美文网首页
npm使用国内镜像方法

npm使用国内镜像方法

作者: almj | 来源:发表于2019-07-07 11:01 被阅读0次

    npm依赖包国外访问速度较慢,每次安装依赖需要等很久,因此将npm的注册表源设置为国内的镜像,可以大幅提升安装速度,常用的npm镜像有如下:

    • 淘宝npm镜像(推荐)
      搜索地址:http://npm.taobao.org/
      registry地址:http://registry.npm.taobao.org/

    • cnpmjs镜像
      搜索地址:http://cnpmjs.org/
      registry地址:http://r.cnpmjs.org/

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

    
    # 1、临时使用(如安装依赖 XXX)
        npm --registry https://registry.npm.taobao.org install XXX
    
    # 2、持久使用(直接把npm地址换成镜像地址,不推荐)
        npm config set registry https://registry.npm.taobao.org
        # 配置后可通过下面方式来验证是否成功
        npm config get registry  #如果返回https://registry.npm.taobao.org,说明镜像配置成功。
          # 或
        npm info XXX
    
    # 3、通过cnpm使用(推荐)
        npm install -g cnpm --registry=https://registry.npm.taobao.org
    
    #4、使用
        cnpm install XXX
    

    相关文章

      网友评论

          本文标题:npm使用国内镜像方法

          本文链接:https://www.haomeiwen.com/subject/rvhbhctx.html