Reputation: 494
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
Reputation: 27515
Version (11.x) <--------- If we need an older version
version (12.x)
version (14.x)
Solution:
LTS version
) from https://nodejs.org/en/Upvotes: 0
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