首页 前端知识 npm使用国内淘宝镜像的方法(两种)

npm使用国内淘宝镜像的方法(两种)

2024-08-10 22:08:44 前端知识 前端哥 678 401 我要收藏

一、通过命令配置

1、设置淘宝镜像源

npm config set registry https://registry.npmmirror.com/

2、设置官方镜像源

npm config set registry https://registry.npmjs.org

3、查看镜像使用状态:

npm config get registry

如果返回https://registry.npmmirror.com/,说明配置的是淘宝镜像。

如果返回https://registry.npmjs.org/,说明配置的是官方镜像。

二、通过使用cnpm安装

1、安装cnpm

 npm install -g cnpm --registry=https://registry.npmmirror.com

 解决安装卡顿或无法安装:
 # 注册模块镜像
 npm set registry https://registry.npmmirror.com
  // node-gyp 编译依赖的 node 源码镜像  
 npm set disturl https://npmmirror.com/dist 
 // 清空缓存  
 npm cache clean --force  
 // 安装cnpm  
 npm install -g cnpm --registry=https://registry.npmmirror.com

2、使用cnpm

cnpm install xxx

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

jQuery3 学习手册(三)

2024-08-18 22:08:04

vue和jQuery有什么区别

2024-04-29 11:04:47

推荐项目:jQuery.Gantt

2024-08-18 22:08:37

jQuery UI 秘籍(一)

2024-08-18 22:08:15

jQuery详解

2024-04-29 11:04:38

echarts饼图点击图例问题

2024-08-18 22:08:48

echarts天气折线图

2024-08-18 22:08:46

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