Getting Started with React

React, today is one of the most used and trending UI JavaScript library. But how to actually start with it is a common question to many. So lets find out a basic way to start.

Prerequisites

  • HTML & CSS
  • JavaScript
  • Basic familiarity with ES6
  • Node.js installed

Setup
Start with npx create-react-app <app-name>. It will install all dependencies and node modules used for basic react app.
Move to the new directory cd <app-name>
Thats it, hit start npm start

Your new React App will start at localhost:3000

Now, start modifying your react App in src/App.js

Happy Coding!!