美文网首页
npm设置镜像源

npm设置镜像源

作者: 马儿爱吃草 | 来源:发表于2019-03-18 17:01 被阅读0次

    临时设置

    例如,从中国镜像安装express

    npm install --registry http://registry.cnpmjs.org express
    

    永久设置

    先设置镜像源

    # 官方
    npm config set registry https://registry.npmjs.org
    # 中国
    npm config set registry https://registry.cnpmjs.org
    # 淘宝
    npm config set registry https://registry.npm.taobao.org
    

    再安装需要安装的包,例如,同上安装express

    npm install express
    

    常用镜像源

    相关文章

      网友评论

          本文标题:npm设置镜像源

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