npm yarn 常用命令

安装:
npm install 
yarn

卸载
npm uninstall xxx (-save -save-dev)
yarn remove

全局安装
npm install xxx --global (-g)
yarn global add bao

安装包
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 gloabl update

清除缓存
npm cache clean
yarn cache clean

删除node module 重装
rm -rf node_modules && npm install 
yarn upgrade

你可能感兴趣的:(npm,javascript,前端)