将 npm 的镜像源设置为阿里云镜像,这样可以加快包的下载速度。
npm config set registry https://registry.npmmirror.com
验证一下镜像是否设置成功:
npm config get registry
https://registry.npmmirror.com
npm 镜像已经成功设置为阿里云镜像(https://registry.npmmirror.com)。
如果需要临时使用官方镜像,可以在命令后添加 --registry https://registry.npmjs.org
评论