美文网首页程序员
2018-07-05 npm 切换源查看源 ,nrm 安装使用

2018-07-05 npm 切换源查看源 ,nrm 安装使用

作者: small_zeo | 来源:发表于2018-07-05 10:29 被阅读0次

    npm查看源:

    npm config get registry

    or npm config list

    公司源: npm config set registry http://www.gicdev.com:7001/

    淘宝源: npm config set registry https://registry.npm.taobao.org/

    npm官方源: npm config set registry https://registry.npmjs.org/

    npm 删除源使用rm 命令

    npm config rm registry

    公司需要在公司的私有npm源和外部npm源之间来回切换,这样set来rm去不是办法,于是有了nrm

    nrm 安装:

    npm install nrm -g

    nrm ls 查看源

    nrm current 查看当前源

    nrm use cnpm 切换源

    nrm add local http://123.207.187.158:7000 添加源

    nrm use local  切换源

    nrm test npm 测试npm 速度

    nrm test cnpm 测试cnpm  速度

    cnpm 明显比npm 快得多

    最后,如果你被公司开除了,怒删公司npm源配置:

    nrm del local

    相关文章

      网友评论

        本文标题:2018-07-05 npm 切换源查看源 ,nrm 安装使用

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