yarn源管理工具yrm

介绍:yrm是yarn的源管理工具,可以在源之间快速的切换

1、全局安装

npm install -g yrm

2、查看可用的源

yrm ls
// 本地结果
 npm ---- https://registry.npmjs.org/
  cnpm --- http://r.cnpmjs.org/
* taobao - https://registry.npm.taobao.org/
  nj ----- https://registry.nodejitsu.com/
  rednpm - http://registry.mirror.cqupt.edu.cn/
  npmMirror  https://skimdb.npmjs.com/registry/
  edunpm - http://registry.enpmjs.org/
  yarn --- https://registry.yarnpkg.com

3、切换源

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

4、测试响应时间

// 测试源响应时间
yrm test
// 本地结果
 npm ---- 696ms
  cnpm --- 2141ms
* taobao - 1669ms
  nj ----- Fetch Error
  rednpm - Fetch Error
  npmMirror  1745ms
  edunpm - Fetch Error
  yarn --- Fetch Error

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

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

6、删除源 yrm del

// 举例
yrm del testResource

你可能感兴趣的:(yarn源管理工具yrm)