Skip to main content

Introduction to NodeJS




NodeJS is know as a  highly scalable, data intensive and  a real time back-end service. NodeJS is an open source, cross platform runtime environment for server-side and networking applications. To build a back-end services there are other tools and framework such as rails, Django, asp.net etc.. Node is not a programming language not a framework. There are few characteristics that make Node more popular.

Characteristics of NodeJS.


  • Easy to get started.
  • Can be used for prototyping and agile development.
  • It is good to build super fast and highly scalable services.
         Eg -: Paypal, Uber, Netflix, Walmart
  • It use JavaScript.
  • Source code will be cleaner and more consistence.
  • Large Eco-system of open source library.

Node is a runtime environment for executing JavaScript code.

Runtime environment of NodeJs. 

In JavaScript the application runs inside the browser . Browser has a JavaScript engine taht convert the code to machine code.
e => ChakraFirefox => SpidermonkeyChrome => V8  

Browser provide the runtime environment. NodeJs is created as a C++ program that is embedded in V8. Similar to a browser Node is a runtime environment for JavaScript.

Node is a program that includes V8 JvaScript engine and additional modules that give the capabilities that are not available in a browser.


Event loop.

Uses event-driven, non-blocking I/O model which makes NodeJS lightweight and efficient. Node handles multiple requests using a single thread asynchronously.  Frameworks such as asp.net, rails are synchronous/Blocking.

Single thread to handle multiple requests.
In synchronous/blocking thread is allocated to each and every request. If in a scenario where all the threads are allocated to requests the new client (request) must wait until a thread is released or if we do not need the clients to wait then we must allocate more hardware which will not be utilized well.


Event loop.
When a request arrives the thread handles the request. As an example while the database executes the query, that same thread is used to serve another client. When the database response with the result it will pit to the event loop. Node continuously monitors the event loop in the background. When an event is found in the event loop , take it out and process. Using this technique it helps to serve more clients without throwing more hardware makes Node more scalable.


Advantages and Disadvantages of NodeJS.



Advantages of NodeJS.

  • Ability to use single programming language from one end of the application to the other end.
  • NodeJS applications are easy to scale both horizontally and vertically.
  • Delivers improved performance since V8 engine compile the JavaScript code into machine code directly.
  • Performance increased via caching modules into memory after the first use.
  • Easily extensible.
  • Support for common tools like unit testing.
  • Well build ‘npm’ package manager and it’s large number of reusable modules.

Disadvantages of NodeJS.

  • Even though there are number of libraries available, the actual number of robust libraries is comparatively low.
  • Not suitable for computationally intensive tasks.
  • Asynchronous programming model is complex than synchronous model.



Comments

Popular posts from this blog

Spring MVC Overview

Spring MVC is a java framework that is used to build web applications. It uses  Model-View-Control design pattern and implements basic features of core spring framework such as Inversion of Control, Dependency Injection How Spring MVC works. When the client sends a request the request is captured by the Dispatcher Servlet which act as the front Controller of the system. With the help of helpers( Handler Mappings, Controller, View Resolver, View) front controller will responds the client with HTML and data. When the Dispatcher Servlet gets the request from the client, the request is immediately sent to Handler Mappings. Handler Mapping will scan the URL and will respond to the Dispatcher Servlet with address of the class that can generate data for the web page which the end user has requested.  With the respond of the Handler Mapping Dispatcher Servlet will forward the request to the Controller, so that the data will be prepared and creates a java objec...

RESTful API

Routers can be created according to REST principles such as get, post, put, delete etc..  GET  =>  get request to r etrieve data from database or data store(An array). POST  =>  post request to insert   data to database or data store(An array). PUT  =>  put request to update the data in database or data store(An array). DELETE  =>  delete request to delete data in database or data store(An array). Creation of routers. In this scenario I have created a schema call users using mongoose.  using mongoose the created users model is retrieved. GET request  using the keyword  " get"   the data can be retrieved.  retrieving all the users in the database. By giving a parameter in the url we can get information according to the given subject.  user is retrieved according to the _id. POST request  using the keyword  "pos t"   the...

What is ExpressJS

Express is a very popular framework that is used in NodeJs. Express is build upon NodeJs and also it provides a lot of tools that makes node more easy to use by adding more functionalities. Most of the needed functionalities are handled by express which helps the users to only focus on the business logic and to easily setup routes and to render the things on screen in a fast, optimized and a secured manner. How to install ExpressJS? Express can be easily installed by the command  " npm i express"  . Installation of ExpressJs package.json file will be updated once the installation is successful. How to import ExpressJS? To import the installed express module we can use the command  " require("express") " . Accessing the imported express module. express can be accessed as given below using the given commands. Firstly a constant called app is created. And then using this give constant app ...