nrm是什么:
1
2 > nrm` can help you easy and fast switch between different npm registries, now include: `npm`, `cnpm`, `taobao`, `nj(nodejitsu)
>
其实就是帮助快速切换npm镜像包,在没有安装之前,最常用的设置镜像的命令是:
1 | npm set registry https://registry.npm.taobao.org/ |
如果需要经常切换镜像,每次都要set,如果有个工具帮你记住各种不同的镜像元,且能快速切换,是不是就很好呢?那nrm就是这样一个工具。
安装:
1 | npm install -g nrm |
查看默认的镜像列表(*表示当前镜像地址)
1 | npm ---- https://registry.npmjs.org/ |
直接use即可切换
1 | nrm use cnpm |
增加镜像
1 | nrm add name url |
删除镜像
1 | nrm del name |