npm 的源管理工具 nrm

介绍:nrm 是npm的镜像源管理工具,可以快速地在 npm 源间进行切换

1、全局安装

npm install -g nrm

2、查看可用的源

nrm ls
// 本地结果
  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/   

3、切换源

nrm use 源名称
// 举例
nrm use taobao

4、测试响应时间

// 测试npm源响应时间
nrm test npm
// 本地结果
 npm ---- 556ms
// 测试所有源响应时间
nrm test
// 本地结果
  npm ---- 585ms      
  yarn --- 1133ms     
  cnpm --- 2703ms     
* taobao - 2509ms     
  nj ----- Fetch Error
  npmMirror  1286ms   
  edunpm - 1062ms  

5、增加源 nrm add <源名称> 源地址

// 举例
nrm add testResource  https://testResource.com

6、删除源 nrm del

// 举例
nrm del testResource

你可能感兴趣的:(npm 的源管理工具 nrm)