❓ 问题描述
全局安装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
的请求超时了。
⁉️ 解决办法①:
-
检查你的网络连接:确保你有稳定的网络连接,并且可以正常访问其他网站。
-
禁用代理设置:如果你正在使用代理服务器,请确保代理配置正确。你可以通过运行以下命令来查看npm的配置:
npm config list
查找任何与代理相关的设置,并验证其正确性。如果你不需要代理配置,可以通过运行以下命令来删除代理配置:
npm config delete proxy npm config delete https-proxy
-
重试安装:在验证了你的网络连接和代理设置后,再次尝试运行
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
最后成功安装: