The app is not running
How can I solve this issue trying to run a reactjs in vs code
CodePudding user response:
react-scripts is not available in your node-modules folder.
Run the command: npm install react-scripts --save
CodePudding user response:
if you downloaded the project then you have to first run this command:
npm install
Instead of installing all the packages manually, this will install all the dependencies that are written there in package.json automatically.
After that you run this command
npm start