介紹:nrm 是npm的鏡像源管理工具认烁,可以快速地在 npm 源間進(jìn)行切換
1、全局安裝
npm install -g nrm
2纯蛾、查看可用的源
nrm ls
// 本地結(jié)果
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 源名稱(chēng)
// 舉例
nrm use taobao
4、測(cè)試響應(yīng)時(shí)間
// 測(cè)試npm源響應(yīng)時(shí)間
nrm test npm
// 本地結(jié)果
npm ---- 556ms
// 測(cè)試所有源響應(yīng)時(shí)間
nrm test
// 本地結(jié)果
npm ---- 585ms
yarn --- 1133ms
cnpm --- 2703ms
* taobao - 2509ms
nj ----- Fetch Error
npmMirror 1286ms
edunpm - 1062ms
5翻诉、增加源 nrm add <源名稱(chēng)> 源地址
// 舉例
nrm add testResource https://testResource.com
6炮姨、刪除源 nrm del <registry>
// 舉例
nrm del testResource