美文网首页
mac上给npm换成cnpm

mac上给npm换成cnpm

作者: Cici冬雪 | 来源:发表于2020-04-11 11:32 被阅读0次

    NPM设置淘宝镜像

    1.查询当前配置的镜像

    npm get registry 
    

    2.设置成淘宝镜像

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

    3.换成原来的

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

    Yarn 设置淘宝镜像

    1.查询当前配置的镜像

    yarn config get registry
    

    2.设置成淘宝镜像

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

    如果报错ERROR: Failed to download Chromium r722234! Set "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD" env variable to skip download.

    npm config set puppeteer_download_host=https://npm.taobao.org/mirrors
    npm i puppeteer
    

    或者

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

    相关文章

      网友评论

          本文标题:mac上给npm换成cnpm

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