一、背景
在国内使用npm时,由于网络问题,经常会遇到速度慢或无法访问的问题。为了提高效率,可以将npm的源设置为国内的镜像源。以下是一些常用的国内npm镜像源以及如何设置它们的方法。
二、国内可用源
2.1 淘宝npm源
https://registry.npm.taobao.org
https://registry.npmmirror.com
2.2 清华大学npm源
https://mirrors.tuna.tsinghua.edu.cn/npm/
2.3 华为npm源
https://repo.huaweicloud.com/repository/npm/
2.4 中科大npm源
https://mirrors.ustc.edu.cn/npm/
三、国内源设置方法
注:以淘宝源 https://registry.npm.taobao.org 为例
3.1 方式一:使用npm命令设置
npm config set registry https://registry.npm.taobao.org
3.2 方式二:使用.npmrc
文件设置
在项目的根目录或用户的home目录下,创建或编辑.npmrc
文件,添加以下内容:
registry=https://registry.npm.taobao.org
3.3 方式三:使用环境变量设置
在环境变量中设置npm的registry
export npm_config_registry=https://registry.npm.taobao.org
3.4 方式四:使用nrm工具
nrm (npm registry manager)是一个npm源管理器,可以方便地切换不同的npm源。
安装nrm:
npm install -g nrm
使用nrm切换源
# 列出可选的源
nrm ls
# 切换到淘宝npm镜像
nrm use taobao
四、检验有效性
可以使用npm config get registry查看当前设置的源
npm config get registry
返回信息内容是你刚刚设置地址,即设置成功。