Npm设置淘宝镜像
# 1、设置npm为淘宝镜像
这将设置npm的registry配置为淘宝镜像。
npm config set registry https://registry.npm.taobao.org/
# 新的镜像地址
npm config set registry https://registry.npmmirror.com
1
2
3
4
2
3
4
# 2、或者设置cnpm为淘宝镜像
npm install -g cnpm --registry=https://registry.npm.taobao.org
# 或者
npm install -g cnpm --registry=https://registry.npmmirror.com
1
2
3
2
3
如果您觉得每次都输入命令比较麻烦,也可以将这个命令添加到npm配置文件中。
# 3、验证配置是否生效
npm config get registry
# or
cnpm config get registry
1
2
3
2
3
如果终端返回的是淘宝镜像的地址,那么配置已经生效了。
# 4、切换为官网的镜像
需要注意的是,如果您以后需要切换回npm官方的镜像,可以使用以下命令:
npm config set registry https://registry.npmjs.org/
1
上次更新: 2024/08/19, 17:40:54