生活中的Design.

NPM设置Registry

字数统计: 74阅读时长: 1 min
2019/12/18 Share

一、使用淘宝镜像

  • 1.临时使用
1
npm --registry https://registry.npm.taobao.org install express
  • 2.持久使用
1
npm config set registry https://registry.npm.taobao.org
  • 3.通过cnpm
1
npm install -g cnpm --registry=https://registry.npm.taobao.org

二、使用官方镜像

1
npm config set registry https://registry.npmjs.org/

三、查看npm源地址

1
npm config get registry
CATALOG
  1. 1. 一、使用淘宝镜像
  2. 2. 二、使用官方镜像
  3. 3. 三、查看npm源地址