框架
React对比vue 创建同一个项目 I created the exact same app in React and Vue. Here are the differences.
优秀的Github仓库
- 1.javascript-algorithms(基于javascript的算法和数据结构) github.com/trekhleb/ja…
- 2.nodebestpractices(Node.js最佳实践) github.com/goldbergyon…
- 3.You-Dont-Know-JS(你不知道的js这本书的开源版本) github.com/getify/You-…
- 4.clean-code-javascript(教你如何写出更好可读性的js代码) github.com/ryanmcdermo…
- 5.30-seconds-of-code(开发时常用的简短代码) github.com/30-seconds/…
注:github后面加1s进入类似vscode的样式可以更好的阅读代码
h5下拉刷新
npm依赖包更新
查看当前最新版本
npm info 依赖包名称 version
or
npm view 依赖包名称 version
查看所有版本
npm info 依赖包名称 versions
or
npm view 依赖包名称 versions
更新依赖包到指定版本
npm i 依赖包名称@最新版本号
更新依赖包到最新版本
npm install 依赖包名称@latest -D