首页 前端知识 如何解决npm install -g json-server出现报错问题

如何解决npm install -g json-server出现报错问题

2024-04-20 17:04:18 前端知识 前端哥 676 818 我要收藏
❓ 问题描述

全局安装json-server时出现报错

❌ 报错信息①

demo\src>npm install -g json-server npm ERR! code ETIMEDOUT npm ERR! syscall connect npm ERR! errno ETIMEDOUT npm ERR! network request to https://registry.npmjs.org/json-server failed, reason: connect ETIMEDOUT 104.16.1.35:443 npm ERR! network This is a problem related to network connectivity. npm ERR! network In most cases you are behind a proxy or have bad network settings. npm ERR! network npm ERR! network If you are behind a proxy, please make sure that the npm ERR! network 'proxy' config is set properly. See: 'npm help config' npm ERR! A complete log of this run can be found in: npm ERR! 

翻译了下大概意思是:你收到的错误信息表明在使用npm全局安装json-server包时出现了网络连接问题。连接到https://registry.npmjs.org/json-server的请求超时了。

 ⁉️ 解决办法①:

  1. 检查你的网络连接:确保你有稳定的网络连接,并且可以正常访问其他网站。

  2. 禁用代理设置:如果你正在使用代理服务器,请确保代理配置正确。你可以通过运行以下命令来查看npm的配置:

    npm config list
    

    查找任何与代理相关的设置,并验证其正确性。如果你不需要代理配置,可以通过运行以下命令来删除代理配置:

    npm config delete proxy
    npm config delete https-proxy
    

  3. 重试安装:在验证了你的网络连接和代理设置后,再次尝试运行npm install -g json-server命令。

 4.若上述问题依然没有解决,更改npm源:你可以尝试切换到其他npm源,例如使用淘宝镜像源。运行以下命令来设置淘宝镜像源:

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

然后再次运行npm install -g json-server命令。

 ❌ 报错信息②

demo\src>npm install -g json-server npm ERR! code CERT_HAS_EXPIRED npm ERR! errno CERT_HAS_EXPIRED npm ERR! request to https://registry.npm.taobao.org/json-server failed, reason: certificate has expired

翻译:根据你提供的错误信息,安装json-server时出现了证书过期的错误。这可能是由于npm镜像源的证书过期导致的。

 ⁉️ 解决办法②:

禁用SSL验证:如果你在开发环境中遇到问题,可以尝试禁用SSL验证。运行以下命令来禁用SSL验证:

npm config set strict-ssl false

最后成功安装:

 

转载请注明出处或者链接地址:https://www.qianduange.cn//article/5499.html
标签
json
评论
发布的文章

CSS(8)空间转换 动画

2024-04-29 12:04:29

CSS介绍(4)--背景属性

2024-04-29 12:04:26

Web学习记录---CSS(1)

2024-04-29 12:04:17

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!