Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failed to start app with NodeJS newest version v17.0.1 #5778

Closed
3 of 5 tasks
TranXuanHoang opened this issue Oct 24, 2021 · 6 comments · Fixed by #5814
Closed
3 of 5 tasks

Failed to start app with NodeJS newest version v17.0.1 #5778

TranXuanHoang opened this issue Oct 24, 2021 · 6 comments · Fixed by #5814
Labels
bug An error in the Docusaurus core causing instability or issues with its execution

Comments

@TranXuanHoang
Copy link

TranXuanHoang commented Oct 24, 2021

🐛 Bug Report

Starting up the app with the newest NodeJS version (17.0.1) failed with the following error:

npm start

> mydocs@0.0.0 start
> docusaurus start

Starting the development server...
Docusaurus website is running at "http://localhost:3000/".

* Client █████████████████████████ setup (3%)
 watch run

node:internal/crypto/hash:67
  this[kHandle] = new _Hash(algorithm, xofLen);
                  ^

Error: error:0308010C:digital envelope routines::unsupported
    at new Hash (node:internal/crypto/hash:67:19)
    at Object.createHash (node:crypto:130:10)
    at BulkUpdateDecorator.hashFactory (C:\mydocs\node_modules\webpack\lib\util\createHash.js:155:18)
    at BulkUpdateDecorator.digest (C:\mydocs\node_modules\webpack\lib\util\createHash.js:80:21)
    at C:\mydocs\node_modules\webpack\lib\DefinePlugin.js:595:38
    at _next33 (eval at create (C:\mydocs\node_modules\tapable\lib\HookCodeFactory.js:19:10), <anonymous>:57:1)
    at _next11 (eval at create (C:\mydocs\node_modules\tapable\lib\HookCodeFactory.js:19:10), <anonymous>:189:1)
    at Hook.eval [as call] (eval at create (C:\mydocs\node_modules\tapable\lib\HookCodeFactory.js:19:10), <anonymous>:239:1)
    at Hook.CALL_DELEGATE [as _call] (C:\mydocs\node_modules\tapable\lib\Hook.js:14:14)
    at Compiler.newCompilation (C:\mydocs\node_modules\webpack\lib\Compiler.js:1053:26)
    at C:\mydocs\node_modules\webpack\lib\Compiler.js:1097:29
    at Hook.eval [as callAsync] (eval at create (C:\mydocs\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:22:1)
    at Hook.CALL_ASYNC_DELEGATE [as _callAsync] (C:\mydocs\node_modules\tapable\lib\Hook.js:18:14)
    at Compiler.compile (C:\mydocs\node_modules\webpack\lib\Compiler.js:1092:28)
    at C:\mydocs\node_modules\webpack\lib\Watching.js:200:19
    at Hook.eval [as callAsync] (eval at create (C:\mydocs\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:22:1) {
  opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
  library: 'digital envelope routines',
  reason: 'unsupported',
  code: 'ERR_OSSL_EVP_UNSUPPORTED'
}

Node.js v17.0.1

Prerequisites

NodeJS version v17.0.1
Docusaurus newest version 2.0.0-beta.8

  • I'm using the latest version of Docusaurus.
  • I have tried the npm run clear or yarn clear command.
  • I have tried rm -rf node_modules yarn.lock package-lock.json and re-installing packages.
  • I have tried creating a repro with https://new.docusaurus.io
  • I have read the console error message carefully (if applicable)

Description

After upgrading Node.js to the newest version (v17.0.1), then creating a new Docusaurus project following the instructions on this page, the project was created successfully but failed when being started with npm start. It seems that there is an error related to Nodejs's crypto module causing the start of the Docusaurus app crashed.

Have you read the Contributing Guidelines on issues?

YES

Steps to reproduce

Use https://new.docusaurus.io to create a CodeSandbox reproducible demo of the bug.

As we don't know eactly which Node's version CodeSandbox is using, this step is skipped.

  1. Step 1... Upgrade NodeJS to the newest version v17.0.1
  2. Step 2... Create a new Docusaurus project npm init docusaurus@latest mydocs
  3. Step 3... cd into mydocs directory and run npm start (currently this command fails to start the app)

Expected behavior

Should be able to start up the app

Your environment

  • Public source code:
  • Public site URL:
  • Docusaurus version used: 2.0.0-beta.8
  • Environment name and version (e.g. Chrome 78.0.3904.108, Node.js 10.17.0): Node.js 17.0.1
  • Operating system and version (e.g. Ubuntu 20.04.2 LTS): Windows 10
@TranXuanHoang TranXuanHoang added bug An error in the Docusaurus core causing instability or issues with its execution status: needs triage This issue has not been triaged by maintainers labels Oct 24, 2021
@TranXuanHoang TranXuanHoang changed the title Fails to start app with NodeJS newest version v17.0.1 Failed to start app with NodeJS newest version v17.0.1 Oct 24, 2021
@Josh-Cena
Copy link
Collaborator

@lex111
Copy link
Contributor

lex111 commented Oct 25, 2021

BTW as a temporary solution you can use export NODE_OPTIONS=--openssl-legacy-provider && npm start for now.

@JonnyBurger
Copy link
Contributor

At Remotion we managed to fix it using:

  1. Setting output.hashFunction to "xxhash64"
  2. Upgrading to Webpack 5.60.0

@pkosiec
Copy link

pkosiec commented Jan 13, 2022

Hello all,

I was able to reproduce the same issue with latest Docusaurus (2.0.0-beta.14). When I updated the Docusaurus along with the Node.js 17 bump on GitHub Actions pipeline (we use Ubuntu latest), the CI job started to fail.

When I added the suggested workaround (capactio/website@b5155b9), the pipeline succeeded (https://github.com/capactio/website/runs/4801264332?check_suite_focus=true).

I don't have any issues on macOS Monterey 12.1. Is it something on my end or the bug is still there?

Cheers!

@slorber
Copy link
Collaborator

slorber commented Jan 13, 2022

@pkosiec try to re-gen your lockfile and look for older versions of webpack in node modules. If you are using a newer webpack it should work

@pkosiec
Copy link

pkosiec commented Jan 13, 2022

Thank you @slorber for your help! While I had correct webpack version in node_modules on my machine, apparently the lockfile caused downloading older webpack on GitHub Actions pipeline. Removing and generating it again helped 👍

korthout added a commit to camunda/feel-scala that referenced this issue Aug 10, 2022
korthout added a commit to camunda/feel-scala that referenced this issue Aug 10, 2022
upgradingdave pushed a commit to camunda/feel-scala that referenced this issue Aug 11, 2022
saig0 pushed a commit to camunda/feel-scala that referenced this issue Aug 11, 2022
* build(docs): update package-lock to v2

The new package-lock version contains more details and is more explicit.
Before updating packages with npm it makes sense to update this.

* deps(docs): bump docusaurus to 2.0.1

* fix(docs): move hideableSidebar config

This fixes the following error at startup:

> [ERROR] ValidationError: themeConfig.hideableSidebar has been moved to
> themeConfig.docs.sidebar.hideable.

* fix(docs): use new algolia appId

This was a new requirement from DocSearch. See
https://docusaurus.io/blog/2021/11/21/algolia-docsearch-migration for
more details.

* fix(docs): align new css urls

It seems the urls are resolved differently now. The previous urls caused
compilation errors during `npm start`. Removing the `feel-scala` prefix
fixed these errors.

* ci(docs): update to node v18

* deps(docs): update to fix webpack

See:
- facebook/docusaurus#5778
- TypeStrong/ts-node#1645
saig0 pushed a commit to camunda/feel-scala that referenced this issue Aug 11, 2022
saig0 added a commit to camunda/feel-scala that referenced this issue Aug 11, 2022
* build(docs): update package-lock to v2

The new package-lock version contains more details and is more explicit.
Before updating packages with npm it makes sense to update this.

* deps(docs): bump docusaurus to 2.0.1

* deps(docs): update to fix webpack

See:
- facebook/docusaurus#5778
- TypeStrong/ts-node#1645

* deps(docs): install axios for http requests

With almost 100k GH stars, this is one of the most commonly used HTTP
libraries for nodejs.

* deps(docs): install use-editable

This library allows us to build an editable React component.

* feat(docs): add tutorial-test page

Adds a test page (MDX) called `tutorial-test.mdx` to develop the
LiveFeel and Editor components.

* docs: add tutorial test page to sidebar

* make it easy to play around with the new editor

Co-authored-by: Philipp Ossler <philipp.ossler@gmail.com>
ludviglundgren added a commit to hostingbydesign/docs.hostingby.design that referenced this issue Feb 2, 2023
ludviglundgren added a commit to hostingbydesign/docs.hostingby.design that referenced this issue Feb 2, 2023
* chore: update pkg

* chore: set static dirs

* docs(storage): bouncer ftp update images

* build: set build env opt

facebook/docusaurus#5778
capactio/website@b5155b9

* docs: update slow ftp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug An error in the Docusaurus core causing instability or issues with its execution
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants