node.js 项目报错: Error: error:0308010C:digital envelope routines::unsupported

nodejs qmt 52℃

git克隆别人的项目到本地npm start运行,发现报错:

Error: error:0308010C:digital envelope routines::unsupported
    at new Hash (node:internal/crypto/hash:69:19)
    at Object.createHash (node:crypto:133:10)
    at module.exports (D:\othergit\punch-emoji\node_modules\webpack\lib\util\createHash.js:135:53)
    at NormalModule._initBuildHash (D:\othergit\punch-emoji\node_modules\webpack\lib\NormalModule.js:417:16)
    at handleParseError (D:\othergit\punch-emoji\node_modules\webpack\lib\NormalModule.js:471:10)
    at D:\othergit\punch-emoji\node_modules\webpack\lib\NormalModule.js:503:5
    at D:\othergit\punch-emoji\node_modules\webpack\lib\NormalModule.js:358:12
    at D:\othergit\punch-emoji\node_modules\loader-runner\lib\LoaderRunner.js:373:3
    at iterateNormalLoaders (D:\othergit\punch-emoji\node_modules\loader-runner\lib\LoaderRunner.js:214:10)
    at Array.<anonymous> (D:\othergit\punch-emoji\node_modules\loader-runner\lib\LoaderRunner.js:205:4)
    at Storage.finished (D:\othergit\punch-emoji\node_modules\enhanced-resolve\lib\CachedInputFileSystem.js:55:16)
    at D:\othergit\punch-emoji\node_modules\enhanced-resolve\lib\CachedInputFileSystem.js:91:9
    at D:\othergit\punch-emoji\node_modules\graceful-fs\graceful-fs.js:123:16
    at FSReqCallback.readFileAfterClose [as oncomplete] (node:internal/fs/read_file_context:68:3) {
  opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
  library: 'digital envelope routines',
  reason: 'unsupported',
  code: 'ERR_OSSL_EVP_UNSUPPORTED'
}

解决办法:
启动前修改node.js的配置:(加入你在linux或者windows的git bash环境下)

export NODE_OPTIONS=--openssl-legacy-provider

然后重新运行项目,一起就又正常了。

转载请注明:QMT|Ptrade量化交易 » node.js 项目报错: Error: error:0308010C:digital envelope routines::unsupported

喜欢 (0)