在使用npm时,官方的源下载npm包会比较慢,国内我们基本使用淘宝的源,最近公司内部搭建了一套npm私有仓库。要添加自己公司内部的npm源,公司内部的源不可能把npm官方的npm包都全量同步,故需要npm源之间的切换,如果使用npm registry xxx的话,太不好管理了。nrm是管理npm源切换的利器。使用方法如下: 安装nrm
npm install -g nrm nrm --help
Usage: nrm [options] [command]
Commands:
ls list all the registriescurrent show current registry nameusechange registry to registryadd [home] add one custom registrydel|rm delete one custom registryhome [browser] open the homepage of registry with optional browsertest [registry] show response time for specific or all registrieshelp print this help
Options:
-h, --help output usage information-V, --version output the version number
主要使用ls和use命令 1)nrm ls是列出来现在已经配置好的所有的原地址
nrm ls npm ----
- cnpm --- taobao - nj ----- rednpm - npmMirror 2)nrm use是切换到哪个源上
nrm use npm 3)nrm add添加源 4)nrm del删除源 5)nrm test测试源的响应时间,可以作为使用哪个源的参考
作者:realjade 链接: 來源:简书 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。