美文网首页
使用npm小技巧

使用npm小技巧

作者: 魔法新石 | 来源:发表于2019-04-04 07:50 被阅读0次
    使用npm小技巧

    背景

    使用npm经常会遇到加载某个依赖加载不了,所以需要用国内的淘宝镜像

    然而,将npm改成cnpm是极不习惯的,所以看到nrm就赶紧记下来了,极是好用!

    安装使用

    安装nrm

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

    查看镜像

    nrm ls

    结果如下,加星号的是当前使用的

    * npm ---- https://registry.npmjs.org/
      cnpm --- http://r.cnpmjs.org/
      taobao - https://registry.npm.taobao.org/
      nj ----- https://registry.nodejitsu.com/

     

    使用镜像

    nrm use taobao

    通过命令nrm ls可以看到,镜像已经是taobao了

      npm ---- https://registry.npmjs.org/
      cnpm --- http://r.cnpmjs.org/
    * taobao - https://registry.npm.taobao.org/
      nj ----- https://registry.nodejitsu.com/

    接下来就可以正常用npm安装依赖了,都很方便。

    相关文章

      网友评论

          本文标题:使用npm小技巧

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