SocaBlood
SocaBlood

Reputation: 319

create-react-app is behind the latest version

I'm trying to run:

npx @contentful/create-contentful-app init contentful-refs

However this fails and throws the following errors:

You are running create-react-app 4.0.3, which is behind the latest release (5.0.0). We no longer support global installation of Create React App.

I went ahead and deleted npm, nvm, npx, create-react-app, create-contentful-app. I checked that they were not on my machine, then I updated to the latest versions of each. and tried running the initial command. I'm still getting the same issue, and now after installing the latest version of create-react-app, create-react-app is still not found on my machine. Not sure what to do here, any help would be greatly appreciated.

Upvotes: 2

Views: 6780

Answers (7)

JonPynes
JonPynes

Reputation: 43

Ask for the latest version: npx create-react-app@latest your-app-name

Upvotes: 4

SocaBlood
SocaBlood

Reputation: 319

Turns out the issue was with the contentful package "@contentful/create-contentful-app". The latest React update broke their package, they have since updated it with a fix.

Upvotes: 2

insaan
insaan

Reputation: 39

If the issue persists even after uninstalling create-react-app globally.

Try

npm cache clean -f

OR

Delete the _npx folder found in:

C:\Users\<username>\AppData\Local\npm-cache

create-react-app seems to work now

npx create-react-app foo

Upvotes: 0

Karan V
Karan V

Reputation: 11

I too faced this issue, I deleted the _npx folder and than ran npx create-react-app my-app and the project folder was created.

_npx path : %\AppData\Local\npm-cache_npx

Upvotes: 1

Vedant Mishra
Vedant Mishra

Reputation: 31

Try this command.

sudo npm i [email protected]

Upvotes: 3

Aurora Borealis
Aurora Borealis

Reputation: 39

I solved this issue by doing the following things:-

  1. Updating my node version to v14.15.0 using nvm(https://phoenixnap.com/kb/update-node-js-version)

  2. updating my npm version

    npm i -g npm@latest

  3. npx [email protected] your-app-name

Upvotes: 2

Try this command npx [email protected] app-name

Upvotes: 2

Related Questions