SKIPPING OPTIONAL DEPENDENCY: request to http://registry.npmjs.org/fsevents failed, reason: connect

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 依赖安装成功。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值