I\'m trying to run the React server by running npm start
When I do this I get a missing script error:
λ npm start
npm ERR! missing scrip
Check the names of the scripts in the package.json file, they may be called something different to start. e.g. this part:
"scripts": {
"build": "cd packages/react-scripts && node bin/react-scripts.js build",
"start": "cd packages/react-scripts && node bin/react-scripts.js start",
},
Also, try printing your working directory using pwd and check to see if the current directory is correct and run npm run start again.