美文网首页
Nodejs npm yarn 国内镜像

Nodejs npm yarn 国内镜像

作者: 木猫尾巴 | 来源:发表于2017-06-23 17:41 被阅读451次

    [TOC]

    国内镜像收集

    淘宝npm镜像

    搜索地址:http://npm.taobao.org/
    registry地址:http://registry.npm.taobao.org/
    其他可能可用的镜像:
    http://npm.hacknodejs.com
    http://registry.npmjs.vitecho.com

    cnpmjs镜像

    搜索地址:http://cnpmjs.org/
    registry地址:http://r.cnpmjs.org/

    使用方法

    npm 代理管理工具 nrm

    node registry manager

    https://www.npmjs.com/package/nrm

    # install 镜像方式
    npm --registry https://registry.npm.taobao.org install -g nrm
    # 直接安装
    npm install -g nrm
    # show
    nrm ls
    # use registry
    nrm use cnpm
    

    临时使用某个代理

    npm --registry https://registry.npm.taobao.org install express
    

    自定义代理设置

    npm config set registry https://registry.npm.taobao.org
    # 配置后可通过下面方式来验证是否成功
    npm config get registry
    # info express
    npm info express
    # show all setting
    npm config list
    # edit npm config
    npm config edit
    # remove to officel
    npm config delete registry
    # remove disturl
    npm config delete disturl
    

    cnpm 方式使用

    npm install -g cnpm --registry=https://registry.npm.taobao.org
    
    # Use to install
    cnpm install expresstall express
    

    不推荐使用国内cnpm代替npm命令,建议使用全局配置代理

    npm 安装位置设定

    npm config set prefix [path]
    # windows
    npm config set prefix "c:\Users\[username]\AppData\Roaming\npm"
    # delete prefix set to default
    npm config delete prefix
    

    yarn 国内加速

    yarn config set registry https://registry.npm.taobao.org --global
    yarn config set disturl https://npm.taobao.org/dist --global
    

    相关文章

      网友评论

          本文标题:Nodejs npm yarn 国内镜像

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