Skip to main content

How to Create a New React App

· One min read

Create React App is a easy and best environment for learning React, and is the easy way to start building a new single-page application in React.

Steps To create a React App

  1. Install Node >= 8.10 and npm >= 5.6 on your machine.

  2. To Create a Project Run

npx create-react-app my-app cd my-app

  1. To start an App

npm start