Introduction
We all know that we are in the next generation of JavaScript, where we are getting everything customized as per user requirements. For the same thing, we have Angular JS, React JS, and Node JS. These are the three most useful programming languages of recent years. Here is the overview of Angular JS, React JS, and Node JS.

Angular JS
- <html>
- <head>
- <script src=” https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js”>
- </script>
- </head>
- <body>
- <div ng-app>
- <p> Expression {{10+10}} </p>
- </div>
- </body>
- </html>
Angular code creates a module. Here, we can define <div ng-app=”myApp”> … </div>
And can add script: var app = angular.module(“myApp”, []);
For more, visit here.
Again, a revolutionary platform! It provides us a high-performance client and server-side rendering with a one-way flow for data binding, This is my favorite technology. When I work on this, I feel like I'm flying in the sky. React JS is based on building reusable components of the code base which make an app very lightweight, more of a library that makes it quite easy to work with. I think React is more of a library than a framework. It can best be described as an application view that allows the programmer to utilize reusable components again and again. It is composed of its own React libraries, tools, and solutions that developers can use to build their own JS framework.
See the code
See the benefits in the above table and read more about react JS.
This is the platform where I’ve not worked a lot, but this is the time when I am learning Node JS. It is a JS runtime platform powered by Google Chrome V8 JavaScript Engine. Node JS can be described as JavaScript that has been given the ability to run on the computer, instead of the browser, like normal JS. This is made possible by the V8 JavaScript runtime engine.
Based on a modular architecture, Node JS simplifies the development of complex applications. It works on an event-driven non-blocking I/O model and is adapted for developing server-side applications in JavaScript. It allows you to build utilities that you can concatenate and create JavaScript files with, on your machine.
See the code
See the benefits of Node JS in the above list. Also, read more about NodeJS.
React JS

Node JS


Humayun Kabir MamunPosted Dec 4, 2016, 1:39 AM
Nice explanation of all three JS framework/library.