npm使用国内镜像源

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了npm使用国内镜像源相关的知识,希望对你有一定的参考价值。

[toc]

一、通过配置 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

二、通过使用 cnpm


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

# 使用 cnpm 
cnpm install xxx

三、相关资料

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

以上是关于npm使用国内镜像源的主要内容,如果未能解决你的问题,请参考以下文章

国内npm镜像源设置

npm配置国内镜像资源+淘宝镜像

npm使用国内镜像源

NPM 和 Yarn 使用国内淘宝镜像源提升各依赖安装速度

Yarn 国内加速,修改镜像源

nrm安装和使用--管理你的npm源