全局设置npm采用淘宝镜像
npm config set registry https://registry.npm.taobao.org
安装yarn
npm install yarn -g
多版本切换
npm install n -g
n lts
node -v
查看下载源
yarn config get registry
更换为淘宝源
yarn config set registry https://registry.npm.taobao.org
初始化项目
yarn init -y
安装webpack
yarn add webpack
安装webpack到dev
yarn add webpack -D
更新到最新的
yarn upgrade webpack
安装项目里的依赖
yarn install
本条目发布于[2017年3月22日](https://c4ys.com/archives/844 "14:40")。属于[Node.js](https://c4ys.com/archives/category/nodejs)分类,被贴了 [npm](yarn(https://c4ys.com/archives/tag/yarn) 标签。