Posts

Showing posts from March, 2020

Advanced in ReactJS

Image
                                                      Let's Grow more with React                                    React Life Cycle Life Cycle of Components Each and every component in React has a life cycle and it consists of three main phases. They are Mounting, Updating and Unmounting. What is Mounting? Mounting is considered as the Birth of a component. In simple terms Mounting means inserting elements into Document Object Model(DOM). When a component is mounting there are four built-in methods that mainly call by React. They are:     constructor()                      getDerivedStateFromProps()               ...

Zero to Hero in React JS

Image
                                                         Introduction to the React JS What is React JS? In simple terms of words, React JS is a web framework. It is a javascript library that use to build user interfaces. React,React.js are other names for React JS. React is mainly used for user interfaces with single-page applications. you might be wondering whether react is frontend or backend? of course, it is used as a frontend library which runs in the browser. React helps developers to develop with high efficiency and Security. It also helps in cost reduction. Pros of React Js Provides a better user experience The programming concept called virtual DOM provides the user with a better experience and it helps developers to enhance their speed while coding. If you consider the structure of DOM it has a tree form. When the u...

Welcome to Node.js

Image
                                Introduction to Node.js What is Node.js? Node.js is an Open Source, cross-platform and run time environment developed by Ryan Dhal. Node.js is developed and released 10 years ago and it started getting more popular because of the use of javascript as its main application. And on the other hand, javascript is the only option to develop web applications in the browser. The main purpose of creating Node.js is to create real-time websites with push capabilities (WebSockets). Why you should choose Node.js? Speed A javascript engine called V8 is the tool that helps node js to process with the speed of lightning. v8 is developed to use in google chrome. The capability of converting javascript into machine code makes V8 super speed when it is compiling and executing javascript. The other magical thing that Node.js owns is called the Event Loop. Even though Javascri...