一个比 nrm 更好用的镜像源管理工具

发布于 2023-05-06 19:38:09 字数 3057 浏览 59 评论 0

配图源自 Freepik

此前介绍过一个 NPM 镜像源管理工具,可以快速切换 NPM 源,那就是 nrm

最原始设置 NPM 或 YARN 源的命令对应如下:

# use npm
$ npm config set registry <registry-url>

# use yarn
$ yarn config set registry <registry-url>

而使用 nrm 可以快速地切换源:

# nrm use taobao
$ nrm use <registry>

但是这个有点不爽,就是说它只会切换 npm 命令的镜像源,nrm 无法修改 yarn 的。

最近发现了一个 yrm(YARN registry manager)工具,可以同步修改 npmyarn 镜像源,它本身也是 nrm 的一个 Fork 分支。

# install
$ npm i yrm -g

# switch registry
$ yrm use <registry>

# ...

使用方法与 nrm 一致,就不多说了。如果对 nrm 不了解的话,可以先看看前面那篇文章。也可以通过 -h 查看所有命令。

$ yrm -h

Usage: yrm [options] [command]

Options:
  -V, --version                output the version number
  -h, --help                   output usage information

Commands:
  ls                           List all the registries
  current                      Show current registry name
  use <registry>               Change registry to registry
  add <registry> <url> [home]  Add one custom registry
  del <registry>               Delete one custom registry
  home <registry> [browser]    Open the homepage of registry with optional browser
  test [registry]              Show response time for specific or all registries
  help                         Print this help

当你使用其他非预设注册表时,不能使用 publish 命令。通常我发布 NPM 包都是直接使用 npm public 命令。

效果如下:

$ 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/

「重要通知」原淘宝 npm 域名即将停止解析,请切换至新域名 npmmirror.comhttp://npm.taobao.org和 http://registry.npm.taobao.org 将在 2022.06.30 号正式下线和停止 DNS 解析。

由于 yrm 包最新一次更新还是五年前,因此淘宝镜像的域名还是旧域名,可以通过以下方式进行更新:

$ yrm add taobao https://registry.npmmirror.com/

Refenerces

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

无可置疑

暂无简介

0 文章
0 评论
23 人气
更多

推荐作者

懂王

文章 0 评论 0

清秋悲枫

文章 0 评论 0

niceone-tech

文章 0 评论 0

小伙你站住

文章 0 评论 0

刘涛

文章 0 评论 0

南街九尾狐

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文