nrm切换npm的镜像
安装node环境
npm -v
1. 安装nrm
npm install nrm -g
2. 查看可选的镜像源
nrm ls
- 号代表目前使用的镜像源
3. 切换镜像源
现在将镜像源切换到淘宝为例
nrm use taobao
4. 增加新的镜像源
你可以增加定制的源,特别适用于添加企业内部的私有源,执行命令 nrm add <registry> <url>
,其中reigstry
为源名,url
为源的路径。
nrm add registry http://registry.npm.frp.trmap.cn/
5. 删除存在的镜像源
执行命令nrm del <registry>
删除对应的源。
nrm del registry
6. .测试速度
你还可以通过 nrm test 测试相应源的响应时间。
nrm test npm