國內npm源映象(npm加速下載) 指定npm映象

尹镇镇發表於2024-09-07

指定npm映象

  • npm 官方原始映象網址是:https://registry.npmjs.org/
    淘寶 NPM 映象:http://registry.npmmirror.com
    阿里雲 NPM 映象:https://npm.aliyun.com
    騰訊雲 NPM 映象:https://mirrors.cloud.tencent.com/npm/
    華為雲 NPM 映象:https://mirrors.huaweicloud.com/repository/npm/
    網易 NPM 映象:https://mirrors.163.com/npm/
    中國科學技術大學開源映象站:http://mirrors.ustc.edu.cn/
    清華大學開源映象站:https://mirrors.tuna.tsinghua.edu.cn/
    騰訊,華為,阿里的映象站基本上比較全

使用淘寶映象源加速 NPM

最新的:

npm config set registry https://registry.npmmirror.com

之前的:

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

使用阿里雲 映象源加速 NPM

npm config set registry https://npm.aliyun.com

使用騰訊雲映象源加速 NPM

npm config set registry http://mirrors.cloud.tencent.com/npm/

使用華為雲 映象源加速 NPM

npm config set registry https://mirrors.huaweicloud.com/repository/npm/

返回npm 官方原始映象

npm config set registry https://registry.npmjs.org/
  • 使用那個映象,只需要 npm config set registry + 對應的映象網址就好了
npm config set registry 

檢視當前的映象源:npm config get registry

npm config get registry

推薦使用上面的方式指定npm映象,當然方法不唯一,也可以用 nrm 去指定npm映象

什麼是nrm

nrm 是一個 npm 源管理器,允許你快速地在 npm 源間切換。

安裝nrm

npm install -g nrm

使用

檢視可選的源

nrm ls

切換

如果要切換到taobao源,執行命令

nrm use taobao

測試速度

nrm test

相關文章