npm install 报如下错误信息。

问题分析:

从代理服务器地址“http://registry.npmjs.org/”中安装node_modules依赖失败。

问题排查:

1.查看代理服务配置地址:

    npm config get proxy
    npm config get https-proxy

2.设置地址为null,如果已经设置为null 则无需操作。

   npm config set proxy null
   npm config set https-proxy null

解决方式:

1.清理缓存重新安装(大概率会失败)。

npm cache clean --force

npm install xxxxx

2. 设置镜像(registry)地址

查看镜像地址:npm config get registry

设置镜像地址一(https://registry.npmjs.org/):

npm config set registry https://registry.npmjs.org/

设置镜像地址二(http://registry.npmjs.org/):

npm config set registry http://registry.npmjs.org/

设置镜像地址三(https://registry.npm.taobao.org/):

  注意:淘宝镜像地址2024年1月22日证书到期,转为https://registry.npmmirror.com

npm config set registry http://registry.npmjs.org/

设置镜像地址四推荐(https://registry.npmmirror.com/):

npm config set registry https://registry.npmmirror.com/

设置镜像地址五(http://registry.cnpmjs.org/):

npm config set registry http://registry.cnpmjs.org/

设置完成后,重新执行 npm install 依赖安装成功。

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐