1.1 npm临时使用淘宝镜像安装依赖包
npm i -g express --registry https://registry.npm.taobao.org
1.2 npm持久使用淘宝镜像安装依赖包
npm config set registry https://registry.npm.taobao.org
2.1 安装nrm
npm install -g nrm
2.2 查看镜像表列
nrm ls
2.3 切换镜像
nrm use npm
2.4 添加自己的镜像
nrm add myorgname myorgurl
myorgname是自己镜像的名称,myorgurl是自己镜像的地址
2.5 删除镜像
nrm del orgname
2.6 测试镜像的速度
nrm test orgname
npm config ls
4.1 cpmn
npm i -g cnpm --registry=https://registry.npm.taobao.org
4.2 yarn
npm i -g yarn--registry=https://registry.npm.taobao.org