0%

nrm管理镜像源

安装

1
npm install -g nrm

使用

1
nrm ls

查看可用的源:

带*的是当前使用的源

1
2
3
4
5
6
7
* npm -------- https://registry.npmjs.org/
yarn ------- https://registry.yarnpkg.com/
cnpm ------- http://r.cnpmjs.org/
taobao ----- https://registry.npm.taobao.org/
nj --------- https://registry.nodejitsu.com/
npmMirror -- https://skimdb.npmjs.com/registry/
edunpm ----- http://registry.enpmjs.org/

切换选择

如果要切换到taobao源

1
nrm use taobao

增加源

你可以增加定制的源,特别适用于添加企业内部的私有源,执行命令 nrm add <registry> <url>,其中reigstry为源名,url为源的路径。

1
nrm add registry http://registry.npm.frp.trmap.cn/

删除源

<registry>是需要删除的对应的源名称

1
nrm del <registry>

测试速度

nrm test 测试相应源的响应时间

1
nrm test npm   

nrm 查看所有的源的响应时间

1
nrm test
1
2
3
4
5
6
7
* npm ---- 1189ms
yarn --- 2893ms
cnpm --- 715ms
taobao - 413ms
nj ----- Fetch Error
npmMirror 1393ms
edunpm - Fetch Error
--------- 本文结束感谢您的阅读 ---------
分享