通常,原先的npm registry地址是npm的官方源,即https://registry.npmjs.org/。但如果你之前设置的是其他镜像源(如淘宝的npm镜像源https://registry.npm.taobao.org/),则需要明确知道那个地址。 如果之前你没有特别记录,那么默认情况下,很可能是npm的官方源https://registry.npmjs.org/。 使用npm config set regi...
npm config get registry ``` 这条命令的作用是获取当前npm registry的地址。 ### 步骤2:将npm registry地址设置为原先的地址 在终端中输入以下命令将npm registry的地址设置为原先的地址(例如,https://registry.npmjs.org): ```bash npm config set registry https://registry.npmjs.org ``` 这条命令的作...
npm config set registry https://registry.npmmirror.com 1. 老http://npm.taobao.org 和 http://registry.npm.taobao.org 域名将于 2022 年 05 月 31日零时起停止服务。所以老命令也不要使用了: npm config set registry http://registry.npm.taobao.org 还原默认源 npm config set registry https://r...
通过cnpm使用淘宝镜像: npminstall-g cnpm --registry=https://registry.npm.taobao.org 将npm设置为淘宝镜像: npm config set registry https://registry.npm.taobao.org 查看当前npm源 npm config get registry 查看当前cnpm源 cnpm config get registry 如果设置了npm为淘宝镜像,需要恢复为默认源时: npm config...
npm config set registry https://registry.npmmirror.com 原来的 registry.npm.taobao.org 已替换为 registry.npmmirror.com ,当点击 registry.npm.taobao.org 会默认跳转到 registry.npmmirror.com 如果你想将npm的下载源恢复为默认的官方源,可以使用以下命令: ...
npm config set registry https://registry.npmjs.org/ 3、设置镜像淘宝源地址 npm config set registry http://registry.npm.taobao.org/ npm config set registry https://registry.npmmirror.com/ 4、恢复默认镜像地址 删除会恢复默认镜像 npm config delete registry...
npm config get registry 2、删除镜像 删除淘宝镜像,恢复默认镜像 # 删除淘宝镜像源 npm config delete registryhttps://registry.npm.taobao.org 3、小结 # 查看当前镜像源 npm config get registry # 设置淘宝镜像源 npm config set registryhttps://registry.npm.taobao.org ...
xxxxxx//恢复官方默认镜像npm configsetregistry https://registry.npmjs.org//最新的配置淘宝镜像,原‘https://registry.npm.taobao.org’已停止服务npm configsetregistry https://registry.npmmirror.com//清空缓存npm cache clean --force//使用cnpmnpm install -g cnpm --registry=https://registry.npmmirror...
npm config set registry https://registry.npmmirror.com 3.还原默认源,可以使用下面的命令: npm config set registry https://registry.npmjs.org/ npm临时使用 上面那种设置是全局的,以后每次都会自动读取已经设置好的源,如果只是一次性使用,可以使用下面的命令 ...
解决步骤1:将npm的下载源恢复成默认的官方源 npm config set registryhttps://registry.npmjs.org 解决步骤2:最新的配置淘宝镜像的淘宝官方提供的方法: npm config set registryhttps://registry.npmmirror.com 解决步骤3:查看是否修改成功 npm config get registry ...