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
-
Install Node >= 8.10 and npm >= 5.6 on your machine.
-
To Create a Project Run
npx create-react-app my-app cd my-app
- To start an App
npm start