npm淘宝镜像到期,切换镜像源

1.查询当前镜像

// 1. 清空缓存
npm cache clean --force
// 2. 切换新源
npm config set registry https://registry.npmmirror.com
3.查看镜像
npm config get registry
4.
查看完整的 npm 配置,包括所有的配置项,可以运行以下命令:
npm config list

2.

Vue 项目中,通常会有一个 .npmrc 文件,该文件用于配置 npm 的行为。如果您在该文件中设置了自定义的源,那么在该项目中运行 npm config get registry 命令时,显示的源 URL 将是该文件中配置的 URL。

会导致全局设置的源没有生效,要修改项目中.npmrc的源设置

registry=https://registry.npmmirror.com

 

 

转:https://blog.csdn.net/weixin_44582045/article/details/135952215

posted @ 2024-02-06 10:30  炽橙子  阅读(1500)  评论(0编辑  收藏  举报