闻道有先后 术业有专攻
如何配置npm和yarn使用国内源
  1. 配置 yarn 使用国内源:
  2. 配置 npm 使用国内源:

近期,淘宝 npm 域名即将停止解析,因此使用老域名的请尽快更新到新的镜像源。
域名切换规则:

https://npm.taobao.org => https://npmmirror.com
https://registry.npm.taobao.org => https://registry.npmmirror.com

配置 yarn 使用国内源:

全局配置:
首先,我们可以设置全局配置,这样每次使用 yarn 时都会自动读取已经设置好的源。

使用以下命令查询当前源:

yarn config get registry

更换为国内源:

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

如果需要恢复为官方源:

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

如果想删除注册表中的源:

yarn config delete registry

配置 npm 使用国内源:

注意:更换为国内镜像源后,将无法再使用 npm search 命令,需要恢复为官方源才能使用。如果恢复官方源后仍无法使用,可以尝试运行删除注册表命令后重试。

查询当前源:

npm config get registry

更换为国内源:

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

如果需要恢复为官方源:

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

如果想删除注册表中的源:

npm config delete registry

使用国内源,以提高包管理速度和稳定性。记得根据需要选择使用 npm 或 yarn,并根据需要切换源。