设置npm 全局 镜像为 --registry=https://registry.npmmirror.com 如何做
要将 npm 的全局镜像设置为 https://registry.npmmirror.com
,你可以使用以下命令:
npm config set registry https://registry.npmmirror.com
这条命令会将 npm 的默认包管理镜像更改为 https://registry.npmmirror.com
,这通常是一个国内的镜像源,可以加快包的下载速度。
如果你想查看当前的 npm 配置以确认更改是否生效,可以使用以下命令:
npm config get registry
这将输出当前配置的镜像地址。确保它显示为 https://registry.npmmirror.com
,以确认设置成功。