Skip to content

Node.js 切换镜像指南

在使用 Node.js 时,通过切换镜像可以提高包的下载速度。以下是切换 Node.js 镜像的步骤:

1. 查看当前配置

在终端中运行以下命令,查看当前 npm 镜像的配置:

bash
npm config get registry

2. 切换为淘宝 NPM 镜像

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

这将把 npm 镜像切换为淘宝 NPM 镜像,提高下载速度。

3. 切换为官方 NPM 镜像

如果需要切换回官方 NPM 镜像,可以运行以下命令:

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