Yarn & NPM
2020-02-09
作用 | npm | Yarn |
安装 | npm install(i) | yarn |
卸载 | npm uninstall(un) | yarn remove |
全局安装 | npm install xxx –-global(-g) | yarn global add xxx |
安装包 | npm install xxx –save(-S) | yarn add xxx |
开发模式安装包 | npm install xxx –save-dev(-D) | yarn add xxx –dev(-D) |
更新 | npm update –save | yarn upgrade |
全局更新 | npm update –global | yarn global upgrade |
卸载 | npm uninstall [–save/–save-dev] | yarn remove xx |
清除缓存 | npm cache clean | yarn cache clean |
重装 | rm -rf node_modules && npm install | yarn upgrade |
关于本文
文章标题 | Yarn & NPM |
发布日期 | 2020-02-09 |
文章分类 | Tech |
相关标签 | #React #ESlint #TypeScript #TS #TSX |
留言板
PLACE_HOLDER
PLACE_HOLDER
PLACE_HOLDER
PLACE_HOLDER