如果在前端开发使用NPM或者YARN下载过程中碰到网速非常慢,可以配置国内淘宝镜像来提升下载速度。具体方法如下
NPM
查询当前镜像
npm get registry
设置为淘宝镜像
npm config set registry https://registry.npmmirror.com
设置为官方镜像
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