0
votes

npm start npm ERR! missing script: start

npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\user\AppData\Roaming\npm-cache_logs\2020-09-14T20_51_39_137Z-debug.log

1
Well, it looks self-explanatory: there's no script named "start" in your package.json.mbojko
"scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" },Priyam Patel

1 Answers

0
votes

You will have to add one script first! Check your package.json for scripts, you might be missing the start script or miss spelled it!