使用nrm管理多个npm registry地址

1、下载nrm: npm install -g nrm;
2、添加多个registry地址:

nrm add npm http://registry.npmjs.org nrm add taobao https://registry.npm.taobao.org nrm add <自定义名称例如:main> '自己定义的镜像源地址'

3、使用nrm切换npm registry地址:
nrm use taobao //使用淘宝地址 nrm use npm//使用npm地址 nrm use main//使用自己定义的镜像源

【使用nrm管理多个npm registry地址】====================== 分割线 ======================
查看当前镜像地址:npm get registry;
设置npm镜像地址:npm config set registry http://registry.npmjs.org;

    推荐阅读