4

I want to create react app using comand npx create-react-app ... when I was running this command in terminal it showed this error:

@typescript-eslint/[email protected]: The engine "node" is incompatible with this module. Expected version "^8.10.0 || ^10.13.0 || >=11.10.1". Got "10.2.1"

How to fix?

2 Answers 2

4

Expected version "^8.10.0 || ^10.13.0 || >=11.10.1". Got "10.2.1"

Your nodejs version is very old and has known security bugs. Update to the latest version of a supported release.

Sign up to request clarification or add additional context in comments.

Comments

0

Version (11.x) <--------- If we need an older version
version (12.x)
version (14.x)

Solution:

  1. Uninstall existing nodejs
  2. Install nodejs (LTS version) from https://nodejs.org/en/

2 Comments

If you want to use multiple versions of node at your machine at the same time use the nvm node version manager. github.com/nvm-sh/nvm
True. For windows, now I used nvm.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.