如果你不确定当前的registry地址,或者想要更彻底地恢复所有npm配置为默认,你可以删除registry这个配置项。这可以通过以下命令来实现: bash npm config delete registry 执行上述命令后,npm将不再具有显式设置的registry地址,它将回退到默认的npm官方源地址。
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设置为淘宝镜像: npm config set registry https://registry.npm.taobao.org 查看当前npm源 npm config get registry 查看当前cnpm源 cnpm config get registry 如果设置了npm为淘宝镜像,需要恢复为默认源时: npm config set registry=https://registry.npmjs.org 设置之后,记得通过npm config get registry...
1.得到原本的镜像地址 npm get registry > https://registry.npmjs.org/ 设成淘宝的 npm config set registry https://registry.npmmirror.com yarn config set registry https://registry.npmmirror.com 2.换成原来的 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 ...
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...
恢复官方镜像 文章目录 一、设置淘宝镜像源 二、恢复官方镜像源 三、查看当前使用的镜像 一、设置淘宝镜像源 npmconfigsetregistry https://registry.npm.taobao.org 服务器建议全局设置 sudonpmconfigsetregistry https://registry.npm.taobao.org-g 二、恢复官方镜像源 ...
1、查看当前镜像源地址 npm get registry 2、设置镜像源地址 npm config set registry https://registry.npmjs.o...
npm configsetregistry https://registry.npmmirror.com 原来的 registry.npm.taobao.org 已替换为 registry.npmmirror.com ,当点击 registry.npm.taobao.org 会默认跳转到 registry.npmmirror.com 如果你想将npm的下载源恢复为默认的官方源,可以使用以下命令: ...