I\'m trying to run the React server by running npm start
npm start
When I do this I get a missing script error:
λ npm start npm ERR! missing scrip
For me the problem was caused because npx create-react-app my-app was not triggering npm install due to lack of user permission. Please run :
npx create-react-app my-app
sudo npx create-react-app my-app
Solves the problem.