Posts

Showing posts from August, 2020

React Js Tutorial for beginner

What is React Js? React JS is a JavaScript library to build attractive user friendly Ui. Prerequisite for ReactJS? -        Basic knowledge on ES6 -        Basic knowledge on html, css, js -        Basic knowledge on npm Tools required -        Vs code (And its free extensions like Babel JavaScript) React Installation -        Install Node.js and npm -        Install Visual code editor -        Install React from Terminal, for this open cmd as an administrative role And then hit the following commands one by one. a)      Npm install -g create-react-app    (This command will install react at global level and will be accessible to any project at any location in the installed machine.) b)      Create-react-app –version (this command will be useful to check and verify React Js version.) c)      C...