Learning ReactJS

Getting started with React

What is ReactJS?

ReactJS is a JavaScript Framework and library mostly used for building user interfaces quickly and efficiently (better than just using JavaScript i.e VanillaJS)

Getting started with ReactJS

To start with your first application using React, we need to add React in our project, I prefer using npm. Basically you have to install nodejs on your system. You’ll need to have Node >= 14.0.0 and npm >= 5.6 on your machine. To create a project, run the below code in command line:

     npx create-react-app appname
     cd appname
     npm start

The above code creates all the files needed for your React application.

I've just started learning, so you can feel free to suggest any corrections. This is the first part of the series, "Learning ReactJS", I'll be back again..Byee👋