Npm常用操作
1. 淘宝镜像
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. Npm的registry地址管理--使用nrm
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
3. 查看npm的配置内容
npm config ls
4. 查看当前镜像
npm config get registry
5. 其它相关工具下载
5.1 cpmn
npm i -g cnpm --registry=https://registry.npm.taobao.org
5.2 yarn
npm i -g yarn--registry=https://registry.npm.taobao.org