Yarn 的安裝與更換國內映象源

bigbug發表於2021-02-18

安裝:

常規 Linux 系統安裝:

npm install -g yarn

Mac OS 也可以用 brew 安裝:

brew install yarn

國內映象源

一般的全域性配置:

yarn config set registry https://registry.npm.taobao.org

更好的配置方式,使用 yrm,先安裝:

yarn global add yrm

再使用:

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

如上,預設是使用的 npm, 更換則使用:

 yrm use taobao

一般會顯示出:

YARN Registry has been set to: https://registry.npm.taobao.org/
NPM Registry has been set to: https://registry.npm.taobao.org/

還可以測試源的速度:

 yrm test taobao                    

一般會顯示:

* taobao - 590ms

其它資料

Yarn 安裝與使用詳細介紹

本作品採用《CC 協議》,轉載必須註明作者和本文連結
Less is more.

相關文章