npm使用国内镜像源

[toc]git

1、经过配置 npm

  • 经过 config 设置
npm config set registry https://registry.npm.taobao.org

# 验证指令
npm config get registry
  • 命令行指定
npm --registry https://registry.npm.taobao.org
  • 编辑配置文件 ~/.npmrc 加入下面内容
registry = https://registry.npm.taobao.org

2、经过使用 cnpm

# 安装 cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org

# 使用 cnpm 
cnpm install xxx

3、相关资料

淘宝 NPM 镜像 : https://npm.taobao.org/
创建或使用镜像,参考: https://github.com/cnpm/cnpmjs.orggithub

相关文章
相关标签/搜索