R1ky68
R1ky68

Reputation: 40

Create React App not working with no message

I've tried to create a new React App with every command from the official documentation

  1. npx create-react-app my-app
  2. npm init react-app my-app
  3. yarn create react-app my-app

But I got every time the same result as shown here:

image of the problem

I tried to fully uninstall and reinstall Node.js; lower versions; I passed from 64bit to 32bit; tried to see if there was some conflicts but still nothing. Every suggestion will be loved

Upvotes: 1

Views: 140

Answers (2)

Chiara Ani
Chiara Ani

Reputation: 1093

I fixed it by running this command:

npm audit fix --force

Upvotes: 1

Gabriel Neves
Gabriel Neves

Reputation: 11

I had the same issue when I tried to run it with node v18... The only thing that worked was to use some previous version. If you're trying with v18, try to downgrade and see if it would work.

Upvotes: 1

Related Questions