npm 镜像源
# 查看当前配置镜像源
npm config get registry
# 淘宝镜像源
npm config set registry https://registry.npm.taobao.org
# 腾讯云镜像源
npm config set registry http://mirrors.cloud.tencent.com/npm/
# 华为云镜像源
npm config set registry https://mirrors.huaweicloud.com/repository/npm/
# 官方默认镜像源
npm config set registry https://registry.npmjs.org
yarn 镜像源
# 查看当前配置镜像源
yarn config get registry
# 淘宝镜像源
yarn config set registry https://registry.npmmirror.com
# 官方默认镜像源
yarn config set registry https://registry.yarnpkg.com