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

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

前言


此前介绍过一个 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 查看所有命令。

frankie@iMac ~ % 🐶 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 命令。

效果如下:

frankie@iMac ~ % 🐶 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/


Refenerces



目录
相关文章
|
Ubuntu Python
Ubuntu安装pip并切换国内源
Ubuntu安装pip并切换国内源
3157 0
Ubuntu安装pip并切换国内源
|
1月前
|
Ubuntu 应用服务中间件 开发工具
Ubuntu16.04搭建gitlab服务器,搭建pip源服务器(两种方式),搭建apt源服务器
这篇文章是关于如何在Ubuntu 16.04系统上搭建GitLab服务器、pip源服务器(使用pypiserver和NGINX两种方式),以及apt源服务器的详细教程。
28 0
Ubuntu16.04搭建gitlab服务器,搭建pip源服务器(两种方式),搭建apt源服务器
|
5月前
|
存储 Ubuntu JavaScript
ubuntu安装npm环境
ubuntu安装npm环境
310 0
使用 nrm 镜像管理工具进行 npm 源管理
使用 nrm 镜像管理工具进行 npm 源管理
129 0
|
JavaScript API
npm修改淘宝镜像飞速下载,npm install过程速度优化,npm删除镜像恢复默认
npm修改淘宝镜像飞速下载,npm install过程速度优化,npm删除镜像恢复默认
371 0
|
Docker 容器
电脑爱好者合订本 2011~2015 NPM、PYPI、DockerHub 备份
电脑爱好者合订本 2011~2015 NPM、PYPI、DockerHub 备份
79 0
|
资源调度 Shell Windows
换源(工具版)
换源(工具版)
221 0
|
Ubuntu Apache 安全
使用 APT-mirror 四步配置 Ubuntu 本地软件仓库
使用 APT-mirror 四步配置 Ubuntu 本地软件仓库 今天,我们将向你展示如何在你的 Ubuntu 个人电脑或 Ubuntu 服务器中,直接通过 Ubuntu 官方软件仓库来配置本地软件仓库。
2584 0
下一篇
无影云桌面