yarn安装依赖时报错certificate has expired at TLSSocket.onConnectSecure

error Error: certificate has expired at TLSSocket.onConnectSecure (node:_tls_wrap:1532:34) at TLSSocket.emit (node:events:527:28) at TLSSocket._finishInit (node:_tls_wrap:946:8) at TLSWrap.ssl.onhandshakedone (node:_tls_wrap:727:12)

这个问题提示是证书过期导致的。

可以尝试禁用SSL证书验证。

yarn config set strict-ssl false

然后再继续安装。

就可以了。

SSL证书验证

安装依赖时,使用npm或者yarn等包管理器从远程仓库下载包,这些操作通常是通过HTTPS协议进行的,而HTTPS协议是基于SSL/TLS协议的。在这个过程中,您的计算机(客户端)会与远程服务器进行安全通信,这时就需要进行SSL证书验证。

Error: Node Sass does not yet support your current environment: Windows 64-bit w ith Unsupported runtime (93) For more information on which environments are supported please see: https://github.com/sass/node-sass/releases/tag/v4.14.1

这个错误表明Node Sass不支持您当前的环境:Windows 64位,运行时版本为93。

可以调整一下node使用的版本。

你可能感兴趣的:(服务器,运维,npm,前端,node.js)