跳转到内容
aswind7
GitHub
Blog

nrm和registry那些事

安装

sudo npm i -g nrm
/usr/local/bin/nrm -> /usr/local/lib/node_modules/nrm/cli.js
+ nrm@1.0.2
added 322 packages in 29.822s

全局配置地址

~/.npmrc

~/.yarnrc

普通模式设置源

// 查询下载源
npm get registry
pnpm get registry
yarn config get registry

// 设置镜像
npm config set registry https://registry.npmjs.org/
pnpm config set registry https://registry.npmjs.org/
yarn config set registry https://registry.yarnpkg.com

命令

  • nrm -h /--help

  • nrm current 显示当前使用的源

  • nrm add name registryUrl 增加一个源

  • nrm ls 陈列所有可用源 (*代表当前使用的源)

坑&问题

  • nrm 无法更改yarn的全局registry配置,只能通过yarn config set registry来改变
Tags: