使用淘宝 npm 镜像装包

前言

由于众所周知的原因,中国大陆的服务器访问 npm 官方的仓库比较慢,等待下载总是心急如焚,关键要下载的包也不大,就更加让屏幕前的你着急了。为加快下载速度,使用淘宝 npm 镜像站来安装 NodeJS 包。

正文

原先淘宝 npm 域名 http://npm.taobao.org 即将停止解析,所以我们使用中国镜像站 https://npmmirror.com

如何使用
有很多方法来配置 npmregistry 地址,下面根据不同情境列出几种比较常用的方法。以淘宝 npm 镜像举例。

  • 临时使用

    1
    npm --registry=https://registry.npmmirror.com install express
  • 持久使用

    1
    npm config set registry https://registry.npmmirror.com
    • 配置后可通过下面两种方式来验证是否成功

      1
      2
      npm config get registry
      npm info express
  • 通过 cnpm 使用

    1
    npm install -g cnpm --registry=https://registry.npmmirror.com
    • 使用方法

      1
      cnpm install express
  • 恢复使用

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

参考

Powered by Hexo and Hexo-theme-hiker

Copyright © 2018 - 2023 Leamx's Blog All Rights Reserved.

UV : | PV :