常用命令对比
| yarn | npm |
|---|---|
yarn init | npm init |
yarn | npm install |
yarn global add xxx@x.x.x | npm install xxx@x.x.x -g |
yarn add xxx@x.x.x | npm install xxx@x.x.x --save |
yarn add xxx@x.x.x --dev | npm install xxx@x.x.x --save-dev |
yarn remove xxx | npm uninstall xxx --save(-dev) |
yarn run xxx | npm run xxx |
参考:The sky 天空