美文网首页
NPM镜像源

NPM镜像源

作者: 一支桨 | 来源:发表于2022-09-16 16:32 被阅读0次

    国内部分依赖源拉取存在莫名其妙的丢失,因此,可以将npm的源切换为淘宝镜像源,可以加快拉取速度。也可以全局安装淘宝镜像,然后cnpm运行命令

    淘宝镜像:https://registry.npm.taobao.org 这个2022 年 05 月 31 日零时起停止服务

    # 注意:淘宝镜像:https://registry.npm.taobao.org这个2022 年 05 月 31  日零时起停止服务
    # 1、全局安装淘宝镜像,完成之后可以通过cnpm install安装项目依赖
    npm install -g cnpm --registry=https://registry.npmmirror.com
    #2、换源安装淘宝镜像
    npm config set registry https://registry.npmmirror.com
    
    #npm设置回本源
    npm config set registry https://registry.npmjs.org
    
    

    相关文章

      网友评论

          本文标题:NPM镜像源

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