Posts

Showing posts from September, 2018

ReactJs - Installation

Image
React Js ReactJs is a javascript library used for building UI components. React Advantages: 1)Uses virtual DOM which is a JavaScript object. This will improve apps performance since JavaScript virtual DOM is faster than the regular DOM. 2)Can be used on client and server side as well as with other frameworks. 3)Component and data patterns improve readability, which helps to maintain larger apps. React Limitations: 1)Covers only the view layer of the app, hence you still need to choose other technologies to get a complete tooling set for development. 2) Uses inline templating and JSX, which might seem awkward to some developers. Installation Of Rect Js : Step 1: Install NodeJs. Here is the link to install NodeJs  node-v6.3.1-x64.msi             after installation to test whether NodeJs is installed or not using "npm" command like below. Step 2 : Installing reactJs using webpack and babel.  Create the root folder using the below commands :