- 博客(8)
- 收藏
- 关注
转载 常见问题
问题 Slow network is detected. Fallback font will be used while loading解决 地址栏输入chrome://flags/#enable-webfonts-intervention-v2, 并设置为Disab...
2018-08-27 13:15:00 115
转载 webpack
webpack.config.js, 静态模块打包器,一切皆模块 loader: 处理非js文件test匹配,use使用loader, css-loader/ts-loader plugins:require加载,通过new创建实例,option自定义[name]: 代表打包后文件的名称...
2018-08-23 10:49:00 72
转载 npm工具
淘宝镜像npm config set registry https://registry.npm.taobao.org检测依赖大小npm install -g slow-depsslow-depseslintnpm install -g eslinteslint --in...
2018-08-23 10:06:00 89
转载 git
git工作区域 1. 工作区: 用户操作目录 2. staging area:在.git中 3. git的本地仓库: 在.git中git bash git config --global user.name 'your name' git config global us...
2018-08-21 09:28:00 81
转载 mysql
卸载sudo rm /usr/local/mysqlsudo rm -rf /usr/local/mysql*sudo rm -rf /Library/StartupItems/MySQLCOMsudo rm -rf /Library/PreferencePanes/My*sud...
2018-08-10 14:28:00 128
转载 http
httpconst http = require('http');const url = require('url');http.createServer(onRequest).listen(8888); // 创建服务并监听function onRequest(req, res)...
2018-08-02 14:47:00 92
转载 es6笔记整理
let && const声明变量的六种方式: var/let/const/function/import/class let: 块级作用域 const:指向内存地址不变piblic getGlobal () { if(typeof self !== undefined...
2018-07-30 14:39:00 91
转载 WebSocket
WebSocket: 网络通信协议,握手协议采用httpconst socket = new WebSocket(url[, protocol]);属性:// 链接状态socket.readyState CONNECTING: 0 OPEN: 1 CLOSING: 2 CL...
2018-07-25 14:08:00 75
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人