设置npm源的几种方式

时间:2024-11-21 08:38:26

原始源

# the original source
/

方案: 使用nrm

  • 安装
npm install -g nrm
  • 列出源的候选项
nrm ls

输出结果:

* npm -------- /
  yarn ------- /
  cnpm ------- /
  taobao ----- /
  nj --------- /
  npmMirror -- /registry/
  edunpm ----- /
  • 使用淘宝源
nrm use taobao

方案: 改变全局的注册

  • 设置成淘宝源
npm config set registry 
SH 复制 全屏
  • 查看结果
npm config get registry

输出结果:

/
  • 测试一下
npm info underscore

方案: 在命令行里指定源

npm --registry  install [name]

方案: 修改 ~/.npmrc

registry = 

方案: 使用cnpm

npm install -g cnpm --registry=
cnpm install [name]

参照

淘宝源链接