This post is to track and record my learning of react and use it after some time.
Making some baby steps to learn react.
Here I will be document something related to it.
Basically I’m going to learn about React components, JSX syntax, Forms.
I have good amount knowledge and experience with angular. Now its time do some real learning and experiment in React. Lets do this.
For anyone who are new to React should have some basic understanding about the JavaScript and Web Development.
What is React?
React is a free and open-source front-end JavaScript library for building user interfaces or UI components. It is maintained by Facebook and a community of individual developers and companies. React can be used as a base in the development of single-page or mobile applications.
It focuses on providing rendering and event handling functionalities.
Dev Environment Setup
We need npm installed in our machine. And then we can install the create-react-app
Or if we already have nodejs installed. We can directly run following command to install the package.
npx create-react-app hello-world
cd hello-world
npm start
(npx comes with npm 5.2+ and higher)
It will install create-react-app and create a skeleton app with name hello-world.


After npm start in source folder
Its shows the following screen

Getting Started
…. to be continued