美文网首页
设置镜像(修改npm地址)通过nrm来管理

设置镜像(修改npm地址)通过nrm来管理

作者: 訫菲 | 来源:发表于2021-03-02 21:05 被阅读0次

    1、淘宝镜像npm地址

    https://npm.taobao.org/

    2、使用cnpm安装并且不改变npm镜像源

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

    3、修改npm镜像为淘宝镜像

    npm config set registry http://registry.npm.taobao.org/

    4、还原npm镜像

    npm config set registry https://registry.npmjs.org/

    5、获取npm镜像源

    npm config get registry

    6、编辑 ~/.npmrc 加入下面内容

    registry = https://registry.npm.taobao.org

    7、使用nrm管理registry地址

    下载nrm   npm install -g nrm

    8、添加registry地址

    nrm add npm http://registry.npmjs.org

    nrm add taobao https://registry.npm.taobao.org

    9、查看可选的源

    执行命令nrm ls

    10、使用nrm切换(npm/taobao) registry地址

    nrm use taobao

    nrm use npm

    11、通过 nrm test 测试相应源的响应时间

    nrm test npm 

    12、删除

    执行命令nrm del 删除对应的源

    相关文章

      网友评论

          本文标题:设置镜像(修改npm地址)通过nrm来管理

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