nrm使用方法总结
作者:互联网
什么是nrm
nrm 是一个 npm 源管理器,允许你快速地在 npm 源间切换。
安装nrm
npm install -g nrm
使用
nrm ls查看可选的源。
nrm ls
*npm ---- https://registry.npmjs.org/
cnpm --- http://r.cnpmjs.org/
taobao - http://registry.npm.taobao.org/
eu ----- http://registry.npmjs.eu/
au ----- http://registry.npmjs.org.au/
sl ----- http://npm.strongloop.com/
nj ----- https://registry.nodejitsu.com/
带*的是当前使用的源
切换
nrm use taobao
增加
你可以增加定制的源,特别适用于添加企业内部的私有源,执行命令 nrm add ,其中reigstry为源名,url为源的路径。
nrm add zpm http://localhost:4873/
删除
nrm del 删除对应的源。
nrm del zpm
测试速度
nrm test 测试相应源的响应时间。
nrm test npm
npm ---- 1328ms
标签:总结,npm,http,nrm,registry,org,方法,npmjs 来源: https://blog.csdn.net/lucky___star/article/details/100779633