美文网首页
更换npm镜像源,提高npm访问速度

更换npm镜像源,提高npm访问速度

作者: MCNU云原生 | 来源:发表于2019-08-15 21:59 被阅读0次

    npm是node包管理和分发工具,应用十分广泛。但是在实际使用中常常会发现下载过程十分缓慢。其实是因为npm本身自带的源为https://registry.npmjs.org/,而这个源在国内使用的时候十分缓慢,为了方便使用,提高npm下载速度,可以更换国内的优秀npm镜像。国内优秀的npm镜像有:

    淘宝镜像

    cnpmjs镜像

    更换源

    更换npm默认镜像源有两种方式,分别为临时更换和永久更换。

    • 临时更换

      • 临时更换为淘宝镜像

        npm --registry=https://registry.npm.taobao.org install swagger-editor
        #指定本次安装swagger-editor使用淘宝镜像
        
      • 临时更换为cnpmjs镜像

        npm --registry=http://r.cnpmjs.org/ install swagger-editor
        
    • 永久更换

      • 永久更换为淘宝镜像

        #设置淘宝镜像
        npm config set registry https://registry.npm.taobao.org
        #查询设置是否成功
        npm config get registry
        
      • 永久更换为cnpmjs镜像

        #设置淘宝镜像
        npm config set registry http://r.cnpmjs.org/
        #查询设置是否成功
        npm config get registry
        
    • 使用cnpm
      除了更换npm默认镜像源的方式,还可以使用cnpm来代替npm,间接实现提高下载速度。cnpm的安装和使用方式如下:

      • 安装cpnm

        #安装
        npm install -g cnpm --registry=https://registry.npm.taobao.org
        #查询版本
        cpnm -v
        
      • 使用cnpm替代npm

        #使用cpnm命令替代npm命令
        cnpm install swagger-ui
        

    相关文章

      网友评论

          本文标题:更换npm镜像源,提高npm访问速度

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