Running your application

Use the following command

npm run start

This will start the application on localhost:3000

To run on a different port modify the scripts section of the package.json

code snippet
"scripts": {
    "start": "react-scripts start",

TO

"scripts": {
    "start": "set PORT=8090&& react-scripts start",