美文网首页VUE
npm使用国内淘宝镜像

npm使用国内淘宝镜像

作者: cain07 | 来源:发表于2021-07-09 22:12 被阅读0次

    介绍

    安装NodeJS之后使用npm来安装包使用的是国外的地址,经常会出现超时错误,可以通过修改为国内的淘宝源来加速安装。

    配置

    临时使用

    npm --registry https://registry.npm.taobao.org install express
    
    

    永久使用

    直接配置

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

    通过如下命令可以查看是否配置成功

    npm config get registry
    
    npm info express
    
    

    如果需要恢复成原来的官方地址只需要执行如下命令:

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

    使用cnpm

    安装淘宝的cnpm,然后在使用时直接将npm命令替换成cnpm命令即可

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

    然后安装时使用如下命令

    cnpm install express
    

    相关文章

      网友评论

        本文标题:npm使用国内淘宝镜像

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