urgent #9292
Answered
by
HemanthDavuluri
abhijithurs
asked this question in
Q&A
urgent
#9292
|
when ever i type npm start after creating the react app confusion folder i am getting an error saying missing:script. |
Answered by
HemanthDavuluri
Jul 17, 2020
Replies: 4 comments 2 replies
|
Please give more information about the issue. Project structure or package.json content, etc. You can refer to a template as well. |
0 replies
|
log file details would be helpful! |
0 replies
2 replies
Answer selected by
ianschmitz
Give more information about your problem |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Okay i tried to recreate the error and i found the reason. make sure you have
"scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" },in your package.json file.
if this script code is missing you will get the error.
check the screenshot!
After removing the selected code i got the missing script error.