npx create-react-app myapp
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.
instead of typing create-react-app
you can type create-react-app@5.0
npx create-react-app@5.0 .
or you can uninstall global create-react-app
package by
npm rm -g create-react-app
then install new version of create-react-app
globally by
npm i -g create-react-app
Now you can easily create new react project.
Top comments (0)