美文网首页
npm切换源

npm切换源

作者: 火星来的农民 | 来源:发表于2022-03-07 16:01 被阅读0次

    1.查看原本的镜像地址

    npm get registry

    https://registry.npmjs.org/

    设成淘宝的

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

    将npm替换为cnpm

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

    安装yarn

    cnpm install yarn -g 全局安装yarn

    2.换成原来的

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

    针对mac 设置默认node版本

    首先切换到 你的版本号

    nvm use 8.10.0

    之后设置微默认的版本

    nvm alias default 8.10.0

    相关文章

      网友评论

          本文标题:npm切换源

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