How to Create a New React App
Create React App is a package runner tool that sets up your development environment to use latest JS features and you can foucs more on developing the application rather than stressing about the initial setup.
Requirements:
npm 5.2+ installed
npx (comes preinstalled with npm 5.2+)
Create React App abbreviated as CRA uses babel and webpack for setting up the frontend build pipeline.
To get started:
npx create-react-app my-app
cd my-app
npm start
Happy Coding 🙃