npm镜像地址的修改或切换

Posted sky-raining

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了npm镜像地址的修改或切换相关的知识,希望对你有一定的参考价值。

方法一:直接编辑npm的配置文件
npm config edit
修改registry的地址
registry=https://registry.npm.taobao.org

方法二:用代码更改npm的配置文件
npm config set registry http://registry.npm.taobao.org
此处镜像改为淘宝镜像

方法三:使用nrm管理registry地址
安装nrm
npm install -g nrm
查看镜像列表
nrm ls
切换镜像
nrm use taobao
在nrm添加自己的镜像地址
nrm add r_name r_url(r_name镜像名字,r_url镜像地址)
删除
nrm del r_name
测试镜像的相应速度
nrm test r_name

淘宝 NPM 镜像:https://npm.taobao.org/






















以上是关于npm镜像地址的修改或切换的主要内容,如果未能解决你的问题,请参考以下文章

npm镜像源管理

npm切换淘宝镜像源

Yarn 国内加速,修改镜像源

npm切换淘宝镜像

ubuntu系统npm切换淘宝镜像源

npm 切换淘宝镜像几种方式