Cosmin Ciolacu
Cosmin Ciolacu

Reputation: 494

@typescript-eslint/[email protected]: The engine "node" is incompatible with this module

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?

Upvotes: 4

Views: 5398

Answers (2)

Manohar Reddy Poreddy
Manohar Reddy Poreddy

Reputation: 27515

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/

Upvotes: 0

auscompgeek
auscompgeek

Reputation: 112

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.

Upvotes: 4

Related Questions