Home > Software engineering >  I Don't Know why it's not work create-react-app
I Don't Know why it's not work create-react-app

Time:01-28

PS E:\shareme\shareme_frontend> npx create-react-app@next --scripts-version=@next --template=cra-template@next ./

You are running create-react-app 5.0.0-next.60 6a3315b7, which is behind the latest release (5.0.0).

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

The latest instructions for creating a new app can be found here: https://create-react-app.dev/docs/getting-started/

CodePudding user response:

First open a new terminal window. Try doing

npx clear-npx-cache

Then execute any one of the following:-

npx create-react-app@latest your-app-name --use-npm
npx create-react-app@latest your-app-name
  •  Tags:  
  • Related