yarn与npm常用命令对比


yarn & npm 命令对比

# 安装
npm install(i)	===>	yarn
# 卸载
npm uninstall(un)	===>	yarn remove
# 全局安装
npm install xxx --global(-g)	===>	yarn global add xxx
# 安装包(开发模式下后面加-dev或-D)
npm install xxx -save(-S)	===>	yarn add xxx
# 清除缓存
npm cache cleanyarn cache clean		===>	yarn cache clean
# 重装
rm -rf node_modules && npm install	===>	yarn upgrade
vue