首页 前端知识 切换npm源的几种方法

切换npm源的几种方法

2024-05-12 00:05:26 前端知识 前端哥 497 626 我要收藏

一、使用命令直接更换(不推荐)

1.查看当前源
npm config get registry
2. 更换npm源为国内淘宝镜像
npm config set registry https://registry.npmmirror.com/
3. 还原npm源
npm config set registry https://registry.npmjs.org/

二、使用nrm管理npm源(推荐)

1.全局安装nrm
 npm install nrm -g --save
2.nrm有默认配置,使用 nrm ls 查看,带 * 即为当前源地址

3.nrm切换淘宝镜像
nrm use taobao
4.测试镜像速度
nrm test taobao
5.使用nrm添加镜像地址
nrm add r_name r_url 
// r_name 为镜像名字,r_url 为镜像地址
5.删除nrm镜像
nrm del r_name

转载请注明出处或者链接地址:https://www.qianduange.cn//article/8270.html
标签
评论
发布的文章

Newtonsoft.Json

2024-05-23 20:05:19

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!