目 录CONTENT

文章目录

NPM 换源

JomBarry
2023-09-26 / 0 评论 / 0 点赞 / 60 阅读 / 0 字 / 正在检测是否收录...

因为NPM地址问题导致下载过慢

基本操作

// 查看现在npm下载源地址
npm config get registry

设置源地址

一些文章还是写着旧的淘宝 NPM 镜像 registry.npm.taobao.org,但它已于 2022 年 05 月 31 日 废弃,读者需要更换为新的 registry.npmmirror.com 源。

// 更换阿里npm源地址
npm config set registry https://registry.npmmirror.com/

NRM 换源

NPM registry manager,管理 NPM 源泉的简单命令行工具。

// 安装 nrm
npm i -g nrm
// 查看所有源地址
nrm ls
  npm ---------- https://registry.npmjs.org/
  yarn --------- https://registry.yarnpkg.com/
  tencent ------ https://mirrors.cloud.tencent.com/npm/
  cnpm --------- https://r.cnpmjs.org/
  taobao ------- https://registry.npmmirror.com/
  npmMirror ---- https://skimdb.npmjs.com/registry/

// 测试每个源响应时间
nrm test
  npm ------ 875ms
  yarn ----- 905ms
  tencent -- 1578ms
  cnpm ----- 465ms
* taobao --- 176ms
  npmMirror - 5738ms
// 使用淘宝源
nrm use taobao
0
  1. 支付宝打赏

    qrcode alipay
  2. 微信打赏

    qrcode weixin
Traffmonetizer VPS 回血赚取额外收益

评论区