跳到主要内容

npm 和 yarn 更换源

npm 更换源

切换到官方源

如果你想使用 npm 官方源,可以执行以下命令:

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

切换到淘宝源

如果你想使用淘宝提供的 npm 镜像源,可以执行以下命令:

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

检查是否更换成功

执行以下命令,可以查看当前使用的 npm 源:

npm config get registry

如果输出的地址与你设置的源地址一致,则说明更换成功。

yarn 更换源

切换到官方源

如果你想使用 yarn 官方源,可以执行以下命令:

yarn config set registry https://registry.yarnpkg.com

切换到淘宝源

如果你想使用淘宝提供的 yarn 镜像源,可以执行以下命令:

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

检查是否更换成功

执行以下命令,可以查看当前使用的 yarn 源:

yarn config get registry

如果输出的地址与你设置的源地址一致,则说明更换成功。

使用 nrm 管理 npm 源

除了手动切换 npm 源外,我们还可以使用 nrm 这个工具来快速切换和管理 npm 源。

安装 nrm:

npm install -g nrm

查看可用的 npm 源:

nrm ls

切换 npm 源:

nrm use taobao