美文网首页
npm 换源

npm 换源

作者: luichooy | 来源:发表于2016-11-04 13:13 被阅读206次
    1. 临时换源

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

    2.永久换源

    npm config set registry https://registry.npm.taobao.org
    //配置后可通过下面方式来验证是否成功
    npm confit get registry
    //或者
    npm info express

    3.通过cnpm

    npm install -g cnpm --registry=https://registry.npm.taobao.org
    // 使用cnpm install expresstall express

    相关文章

      网友评论

          本文标题:npm 换源

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