nodejs国内淘宝镜像
时间: 2023-07-14 10:04:43 浏览: 137
npm配置国内镜像资源+淘宝镜像的方法
国内常用的淘宝镜像是npm的淘宝镜像。你可以使用以下命令将npm的镜像切换到淘宝镜像:
```
npm config set registry https://registry.npm.taobao.org/
```
执行以上命令后,npm将会使用淘宝镜像来下载和安装包。如果需要切换回官方镜像,可以使用以下命令:
```
npm config set registry https://registry.npmjs.org/
```
这样就可以将npm镜像切换回官方镜像了。希望对你有帮助!如果还有其他问题,请继续提问。
阅读全文