DEV Community

Cover image for Create React App error
Kunal Agrawal
Kunal Agrawal

Posted on • Edited on

3 2

Create React App error

npx create-react-app myapp
Enter fullscreen mode Exit fullscreen mode

Uff! this error.

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.
Enter fullscreen mode Exit fullscreen mode

instead of typing create-react-app you can type create-react-app@5.0

npx create-react-app@5.0 .
Enter fullscreen mode Exit fullscreen mode

or you can uninstall global create-react-app package by

npm rm -g create-react-app
Enter fullscreen mode Exit fullscreen mode

then install new version of create-react-app globally by

npm i -g create-react-app
Enter fullscreen mode Exit fullscreen mode

Now you can easily create new react project.

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay