码迷,mamicode.com
首页 > 其他好文 > 详细

npm镜像地址的修改或切换

时间:2019-01-24 13:17:46      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:url   edit   taobao   add   target   直接   name   配置文件   use   

方法一:直接编辑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镜像地址的修改或切换

标签:url   edit   taobao   add   target   直接   name   配置文件   use   

原文地址:https://www.cnblogs.com/Sky-Raining/p/10313600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!