摘要: yarn 不要一起用 npm 如果一起用,看下lock 的版本一样不,不一样可能会出现问题 阅读全文
posted @ 2018-10-12 13:42 Running00 阅读(4867) 评论(3) 推荐(1) 编辑
摘要: ecma 阅读全文
posted @ 2018-10-10 14:09 Running00 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 阿喀琉斯之踵 学习编程最好的办法就是编写代码 比较 隐式类型转换 数字和字符串 比较 字符串会隐式转换为数字,再进行比较 == 类型转换 ecma 阅读全文
posted @ 2018-10-09 14:01 Running00 阅读(160) 评论(0) 推荐(0) 编辑
摘要: vue 重新渲染 更新数据的频繁变化 后端mvc模式 数据驱动 阅读全文
posted @ 2018-10-08 20:28 Running00 阅读(85) 评论(0) 推荐(0) 编辑
摘要: npmyarn npm install yarn npm install react --save yarn add react npm uninstall react --save yarn remove react npm install react --save-dev yarn add re 阅读全文
posted @ 2018-10-08 07:33 Running00 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 1.查看某个文件是谁修改的,提交人,时间 git blame file_path 2.具体修改详情:git log -p file_path 3.查看基于那个分支: git 4.Git撤销 5.git stash 加入储藏 git stash list 查看所有储藏 git stash apply 阅读全文
posted @ 2018-10-08 06:55 Running00 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 选中文件 ctrl + option +c 可以复制文件路径 阅读全文
posted @ 2018-09-26 17:28 Running00 阅读(216) 评论(0) 推荐(0) 编辑
摘要: mkdir 文件夹名 可以创建一个文件夹 阅读全文
posted @ 2018-09-26 17:01 Running00 阅读(90) 评论(0) 推荐(0) 编辑
摘要: npm outdated 列出所有的 版本有差异的 npm outdated webpack(包名)列出此包的版本 第一个例子: npm outdated less 输出 Package Current Wanted Latest Location less 2.7.3 2.7.3 3.8.1 ** 阅读全文
posted @ 2018-09-26 16:59 Running00 阅读(181) 评论(0) 推荐(0) 编辑
摘要: npm install 之后 会生成package-lock.json 文件 ,注意这个文件不能删除,否则每次 npm i 之后,node_modules都装的是最新的,会出现意想不到的问题。 阅读全文
posted @ 2018-09-26 16:48 Running00 阅读(154) 评论(0) 推荐(0) 编辑