在前端开发的时候使用国外的镜像源速度很慢并且容易下载失败,有时候需要尝试多次才有可能下载成功,很麻烦,因此可以切换为国内镜像源,下面为常用的npm,yarn,pnpm切换国内镜像源(以淘宝为例)的方式。
二、NPM切换镜像源
- 查看当前的镜像源。
npm config get registry
- 两个快的镜像源
npm config set registry https://registry.npmmirror.com
npm config set registry https://registry.npm.taobao.org
- 还原默认源
npm config set registry https://registry.npmjs.org