赞
踩
Yarn 是一个 JavaScript 包管理器,用于管理项目的依赖关系。默认情况下,Yarn 使用官方的 npm registry 作为源来下载和安装依赖项。
然而,由于官方源可能在国内访问速度较慢,您可以使用国内的镜像源来加快依赖项的下载速度。以下是一些常用的国内镜像源:
淘宝镜像:https://registry.npm.taobao.org使用命令 yarn config set registry https://registry.npm.taobao.org
将 Yarn 的源设置为淘宝镜像。
cnpmjs 镜像:https://r.cnpmjs.org使用命令 yarn config set registry https://r.cnpmjs.org
将 Yarn 的源设置为 cnpmjs 镜像。
npm 镜像:https://registry.npmjs.org使用命令 yarn config set registry https://registry.npmjs.org
将 Yarn 的源设置为官方的 npm 镜像。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。