yarn install 使用最新淘宝镜像和清华镜像
yarn install 使用最新淘宝镜像和清华镜像
使用淘宝镜像
要使用淘宝的 Yarn 镜像,你可以通过设置环境变量来指定镜像源:
yarn config set registry https://registry.npmmirror.com/
或者,在安装的时候临时指定镜像源:
yarn config set registry https://registry.npmmirror.com/ --global
yarn install
使用清华大学镜像
同样地,要使用清华大学的 Yarn 镜像,你也可以通过设置环境变量来指定:
sh
深色版本
yarn config set registry https://mirrors.tuna.tsinghua.edu.cn/npm/
或者,在安装的时候临时指定镜像源:
yarn config set registry https://mirrors.tuna.tsinghua.edu.cn/npm/ --global
yarn install
全局配置
如果你想让所有的项目都使用这个镜像源,可以添加 --global 参数来全局设置:
yarn config set registry https://mirrors.tuna.tsinghua.edu.cn/npm/ --global
这样以后每次运行 yarn install 命令时都会从清华大学的镜像服务器拉取依赖包。
恢复默认镜像源
如果你不再需要使用镜像源或者想要恢复到默认的 Yarn 镜像源,可以执行以下命令:
yarn config delete registry
这将删除之前设置的镜像源地址,使 yarn 回到使用官方源的状态。