Installing Dependencies
First you need to install Create React App
You can do that by running the command below in the directory you want to put your project folder in:
npx create-react-app {YOUR_APP_NAME}
Replace {YOUR_APP_NAME} with the name of your app
Then go in to the dir by entering:
cd {YOUR_APP_NAME}
Then run the command:
npm start
That's it! You can check your app by going to localhost:3000