Ebdulmomen1
Ebdulmomen1

Reputation: 703

create-react-app doesn't generate public and src folders thus cannot get started

i have installed CRA for over a month and have been working with it without having any problems, however today i created a new react app and it builds the folders and directories except it doesn't generate src and public folder(it just generated node-modules folder) thus when i run npm start it gives me an error saying:

npm ERR! missing script: start

enter image description here

enter image description here

Upvotes: 4

Views: 8561

Answers (5)

Ali Akbar
Ali Akbar

Reputation: 1

I tried all the suggestions stated above but none works for me.I just run these commands and create a new project.

  1. npm rm -g create-react-app
  2. npm install -g create-react-app
  3. npx create-react-app@latest my-app

This work for me.

Upvotes: 0

Alan4747
Alan4747

Reputation: 1

You can create project with yarn:

yarn create-react-app my-app

Upvotes: -3

Nikz
Nikz

Reputation: 1406

I have tried installing in different computers and for most cases the above codes helped to fix the issue. But in a rare case I had to use another code and it worked perfectly. Try running the below code

 npx --ignore-existing create-react-app Your-AppName

Upvotes: 1

Ebdulmomen1
Ebdulmomen1

Reputation: 703

I still have no idea what was the reason but I got it working doing these:

-uninstalled create-react-appusing npm uninstall -g create-react-app.

-using npx create-react-app app-name I created a new app and now it's working as expected.

Upvotes: 2

Nisheanthan
Nisheanthan

Reputation: 151

Initially you might have installed create-react-app globally.Try to remove using npm uninstall -g create-react-app command and then try npx create-react-app <your-app-name>. The reason is, npx should use it's latest version to work. Hope your doubt is now cleared

Upvotes: 4

Related Questions