Home  >  Q&A  >  body text

Error message "Error: 0308010C: Digital envelope routine is not supported"

<p>我创建了默认的IntelliJ IDEA React项目,并得到了以下错误:</p> <pre class="brush:none;toolbar:false;">错误:error:0308010C:digital envelope routines::unsupported at new Hash (node:internal/crypto/hash:67:19) at Object.createHash (node:crypto:130:10) at module.exports (/Users/user/Programming Documents/WebServer/untitled/node_modules/webpack/lib/util/createHash.js:135:53) at NormalModule._initBuildHash (/Users/user/Programming Documents/WebServer/untitled/node_modules/webpack/lib/NormalModule.js:417:16) at handleParseError (/Users/user/Programming Documents/WebServer/untitled/node_modules/webpack/lib/NormalModule.js:471:10) at /Users/user/Programming Documents/WebServer/untitled/node_modules/webpack/lib/NormalModule.js:503:5 at /Users/user/Programming Documents/WebServer/untitled/node_modules/webpack/lib/NormalModule.js:358:12 at /Users/user/Programming Documents/WebServer/untitled/node_modules/loader-runner/lib/LoaderRunner.js:373:3 at iterateNormalLoaders (/Users/user/Programming Documents/WebServer/untitled/node_modules/loader-runner/lib/LoaderRunner.js:214:10) at iterateNormalLoaders (/Users/user/Programming Documents/WebServer/untitled/node_modules/loader-runner/lib/LoaderRunner.js:221:10) /Users/user/Programming Documents/WebServer/untitled/node_modules/react-scripts/scripts/start.js:19 throw err; ^ </pre> <p>这似乎是一个最近的问题 - <em>webpack在4天前遇到了这个问题,目前仍在解决中</em>。</p>
P粉237125700P粉237125700396 days ago665

reply all(2)I'll reply

  • P粉038856725

    P粉0388567252023-08-21 11:14:47

    You can try one of the following methods:

    1. Downgrade to Node.js v16.

    • You can reinstall the current LTS version from the Node.js website.

    • You can also use nvm. For Windows, use nvm-windows.

    2. Enable legacy OpenSSL provider.

    On Unix-like systems (Linux, macOS, Git bash, etc.):

    export NODE_OPTIONS=--openssl-legacy-provider
    

    On a Windows command prompt:

    set NODE_OPTIONS=--openssl-legacy-provider

    On PowerShell:

    $env:NODE_OPTIONS = "--openssl-legacy-provider"

    refer to

    reply
    0
  • P粉817354783

    P粉8173547832023-08-21 10:53:44

    In your package.json: change this line

    "start": "react-scripts start"
    

    for

    "start": "react-scripts --openssl-legacy-provider start"
    

    reply
    0
  • Cancelreply