npm | yarn |
---|---|
npm install | yarn |
npm install react --save | yarn add react |
npm uninstall react --save | yarn remove react |
npm install react --save-dev | yarn add react --dev |
npm update --save | yarn upgrade |
一、查看版本
yarn --version
npm -version(或者 node -v)
二、安裝淘寶鏡像
yarn config set registry 'https://registry.npm.taobao.org'
npm install -g cnpm --registry=http://registry.npm.taobao.org
三、初始化某個項目
yarn init
npm init
四、默認安裝項目依賴
yarn install
cnpm install
五、安裝某個依賴,而且默認保存到package
yarn add xxx
cnpm install xxx --save
六、卸載某個項目依賴
yarn remove xxx
cnpm uninstall xxx --save
七、更新某個項目依賴
yarn upgrade xxx
cnpm update xxx --save
八、安裝某個全局的項目依賴
yarn global add xxx
cnpm install xxx -g
九、安裝某個特定版本號的項目依賴
yarn add xxx@
cnpm install xxx@1.2.33 --save
十、發佈/登陸/登出,一系列NPM Registry操做
yarn publish/login/logout
npm publish/login/logout
十一、運行某個命令
yarn run/test
npm run/test
參考:https://www.jianshu.com/p/254794d5e741嗯,就醬~~