npm太慢, 淘寶npm映象使用方法

weixin_34293059發表於2019-01-05

淘寶npm地址: http://npm.taobao.org/

1.臨時使用

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

2.持久使用

npm config set registry https://registry.npm.taobao.org
  • 配置後可通過下面方式來驗證是否成功
    npm config get registry

  • npm info express

3.通過cnpm使用

npm install -g cnpm --registry=https://registry.npm.taobao.org
  • 使用
    cnpm install express

4、npm修改或切換映象地址

  • 方法一:直接編輯npm配置檔案
    npm config edit
    6515740-e5f562bd3cb15f74.png
    1416090-20180621111355013-1113191392.png

直接修改registry的地址:
sass_binary_site=https://npm.taobao.org/mirrors/node-sass/
phantomjs_cdnurl=https://npm.taobao.org/mirrors/phantomjs/
electron_mirror=https://npm.taobao.org/mirrors/electron/
registry=https://registry.npm.taobao.org

  • 方法二:用程式碼更改npm的配置檔案
    npm config set registry http://registry.npm.taobao.org

  • 方法三:使用nrm管理registry地址

    • 安裝nrm
      npm i -g nrm

    • 檢視映象列表
      nrm ls

      6515740-97189d35396f4b66.png
      檢視映象

    • 切換映象
      nrm use taobao

    • 在nrm新增自己的映象地址
      nrm add r_name r_url

    • 刪除
      nrm del r_name

    • 測試映象的相應速度
      nrm test r_name

原文地址

相關文章