Home > Enterprise >  How can I use the latest react version (react18)?
How can I use the latest react version (react18)?

Time:04-19

When using npx create-react-app my-app, I got this error:

You are running create-react-app 4.0.3, which is behind the latest release (5.0.1). We no longer support global installation of Create React App. Please remove any global installs with one of the following commands: - npm uninstall -g create-react-app - yarn global remove create-react-app

I used the command npm uninstall and also check out the getting started with react

but that links suggest the same process of npx create-react-app my-app. I also used this command npm install react react-dom but this
only install a node modules and a package.json. It doesn't create the usual react boilerplate and all. Anyone have any idea, please help.

CodePudding user response:

Try this solution :

npx create-react-app@latest myApp
  • Related