欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

npm配置国内镜像资源+淘宝镜像

程序员文章站 2022-05-30 20:10:29
...

npm配置国内镜像资源+淘宝镜像

强烈推荐30个原生JavaScript的demo,包括canvas时钟特效、自定义视频播放器、搜索栏快速匹配、fetch访问资源、console调试技巧等,先fork后学习,详见点击打开链接,欢迎点赞~~~谢谢,共同进步学习!

将npm的注册表源设置为国内的镜像

1、国内用户,建议将npm的注册表源设置为国内的镜像,可以大幅提升安装速度

2、国内优秀npm镜像推荐及使用:http://riny.net/2014/cnpm/

淘宝npm镜像

 ·搜索地址:http://npm.taobao.org/

 ·registry地址:http://registry.npm.taobao.org/

cnpmjs镜像

 ·搜索地址:http://cnpmjs.org/

 ·registry地址:http://r.cnpmjs.org/

如何使用

 有很多方法来配置npm的registry地址,下面根据不同情境列出几种比较常用的方法。以淘宝npm镜像举例:

  1、临时使用

  1. npm --registry https://registry.npm.taobao.org install express
  2. 2、持久使用
  3. npm config set registry https://registry.npm.taobao.org
  4. // 配置后可通过下面方式来验证是否成功
  5. npm config get registry
  6. // 或
  7. npm info express
  8. 3、通过cnpm使用
  9. npm install -g cnpm --registry=https://registry.npm.taobao.org
  10. // 使用
  11. cnpm install express
  12. 我使用的是cnpm,如下图

npm配置国内镜像资源+淘宝镜像

npm使用国内镜像的方法

一.通过命令配置
1. 命令

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

2. 验证命令

npm config get registry

如果返回https://registry.npm.taobao.org,说明镜像配置成功。

二、通过使用cnpm安装
1. 安装cnpm

npm install -g cnpm --registry=https://registry.npm.taobao.org

2. 使用cnpm

cnpm install xxx

    

相关标签: npm