npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@haochuan9421/urm

v1.0.0

Published

Universal Registry Manager, manage npm and yarn registry easily.

Downloads

12

Readme

urm (Universal Registry Manager)

通用的 registry 配置管理工具, 支持多种包管理器(npmyarnberry),为多项目和多 scope 而设计。

简体中文English

环境要求

Node.js v12 及以上版本。

安装

npm i -g @haochuan9421/urm
# 或
yarn global add @haochuan9421/urm

快速入手

# 显示当前的 registry 配置
$ urm
# 根据提示设置 registry 配置
$ urm set
# 在安装 scope 为 "@vant" 的包时使用 taobao registry,并把配置文件保存到当前项目
$ urm set taobao --scope @vant --where project
# 根据提示删除 registry
$ urm unset

使用介绍

一张图带你了解 URM 的使用

一个视频带你了解 URM 的使用

包管理器(npm、yarn...)的 registry 配置

查看当前配置

# 查看包管理器的 registry 配置
urm current
# 别名
urm cur
# current 是默认命令,可省略
urm

新增配置

# 按照提示新增一条 registry 配置
urm use
# 别名
urm set
# 跳过提示,直接手动设置,该命令表示在安装 scope 为 "@vant" 的包时使用 taobao registry,并把配置文件保存到当前项目
urm use taobao --scope @vant --where project
# 简写
urm use taobao -s @vant -w project

删除配置

  • 单个删除
# 按照提示选择一条 registry 配置删除
urm unuse
# 别名
urm unset
  • 一次性清空
# 一次性清除所有可删除的 registry 配置
urm clear
# 跳过确认提示
urm clear -yes
# 简写
urm clear -y

工作模式切换

  • 临时切换
# 查看 yarn 的 registry 配置
urm --mode yarn
# 简写
urm -m yarn
# 给 yarn v2 (berry) 新增一条 registry 配置
urm use -m yarn2
# 删除 npm 的 registry 配置
urm unuse -m npm
  • 永久切换
# 按照提示选择一个包管理器作为 URM 的默认工作模式。
# 在不通过 --mode 指定其他包管理器的情况下,默认所有的操作都是工作在默认模式下的
urm mode
# 跳过提示,直接设置默认的工作模式为 yarn,目前可选的值有 npm、yarn、yarn2
urm mode yarn

备选的 registry 列表

查看当前列表

# 查看所有可选的 registry,列表中的 registry 可以在你执行 urm use 时选择,
# 有了这个列表,可以极大的方便 registry 的设置,无需记住一大串的 URL
urm list
# 别名
urm ls

添加 registry

# 按照提示输入 registry 的名称和 URL
urm list add
# 跳过提示,直接指定 registry 的名称和 URL
urm list add youzan https://npm.youzan.com/

删除 registry

# 按照提示从列表中选择一条删除
urm list del
# 跳过提示,直接从列表中删除名称是 youzan 的 registry
urm list del youzan

registry 测速

# 测试名称是 taobao 的 registry 的访问速度,检测的方式是计算访问 `${registry}/-/ping` 地址的耗时
urm list ping taobao
# 所有 registry 全部测速
urm list ping

image

重置列表

# 恢复列表到默认状态,预设的列表提供了几个国内访问比较稳定、快速的 registry
urm list restore

编程方式使用

本地安装

npm i @haochuan9421/urm
# 或
yarn add @haochuan9421/urm

使用 urm

const urm = require("@haochuan9421/urm");

(async () => {
  // 获取 URM 封装的包管理器 (package manager) 实例
  const npmConfig = urm.pmConfig.getPmConfig("npm"); // choices "npm", "yarn", "yarn2"
  // 查看包管理器当前的 registry 配置,以数组的格式返回
  const curRegistries = await npmConfig.getCurRegistries();
  // 设置包管理器的 registry 配置
  await npmConfig.setRegistry("@vant", "https://registry.nlark.com/", { whereType: "project" });
  // 删除包管理器的 registry 配置
  await npmConfig.delRegistry("@vant", { whereType: "project" });
  // 清除包管理器的全部 registry 配置
  await npmConfig.clearRegistry();
})();

具体可以参考 lib/pm-config 文件夹,不同的包管理器在方法的实现上不尽相同,但是实现的接口都是一样的,这有利于后续支持其他的包管理器。

Star 趋势

Stargazers over time