稍微记录一下 yarn 和 npm 的几种命令区别

153 阅读1分钟

常用命令对比

yarnnpm
yarn initnpm init
yarnnpm install
yarn global add xxx@x.x.x npm install xxx@x.x.x -g
yarn add xxx@x.x.xnpm install xxx@x.x.x --save
yarn add xxx@x.x.x --devnpm install xxx@x.x.x --save-dev
yarn remove xxxnpm uninstall xxx --save(-dev)
yarn run xxxnpm run xxx

参考:The sky 天空