美文网首页
npm设置淘宝镜像

npm设置淘宝镜像

作者: 小马哥是没有感情的 | 来源:发表于2019-10-10 14:16 被阅读0次

    1.临时使用

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

    2.永久使用

    npm config set registry https://registry.npm.taobao.org # https://registry.npm.taobao.org是淘宝镜像
    

    3.添加cnpm使用

    3.1 安装

    npm install -g cnpm --registry=https://registry.npm.taobao.org # https://registry.npm.taobao.org是淘宝镜像
    

    3.2 使用

    $ cnpm install [name]
    

    4.恢复使用

    npm config set registry https://registry.npmjs.org #https://registry.npmjs.org是官网镜像
    

    相关文章

      网友评论

          本文标题:npm设置淘宝镜像

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