Why Node.js applications are scalable

in #nodejs7 years ago

Node is increasingly being used by more companies both large and small. Some of the large tech companies using Node are LinkedIn, Paypal, NetFlix and Ebay. It is therefore important for Node applications to be scalable. Wonder why Node.js application is scalable? Here are some of the reasons.

Asynchronous processing

If you find yourself asking why node.js application is scalable?, one of the major reasons is asynchronous processing. The main design principle which makes apps made in Node scalable is processing requests asynchronously. Whenever there is any background activity than needs to be handled for a request, Node delegates the required work e.g. File I/O or network I/O and goes on to handle another request, providing non-blocking I/O. Once the work is done, Node passes the processed data to the client.

Single threading in handling requests

Almost all other platforms create new threads for each request. This can reduce performance and cause scalability issues. This is due to factors such as thread initialization and termination overhead. Node differs from other platform such as PHP, J2EE and .NET in that a single thread handles client requests.
For any client request, Node listens to requests, hands over work to worker threads and is ready to accept new requests. Once the worker threads are done processing, the worker threads return their results to the main thread. The results can be sent to the request and processed further. This mean there is no context switching and makes it great for applications that are highly concurrent.

The Node javascript engine

Based on Google Chrome’s V8 javascript engine, this is the third answer to the question why node.js application is scalable? There are multiple optimizations included in engine, making it extremely fast. The engine is well-engineered since is originates from Google and being open-source, it is continuously being improved.
By now, you are better versed in some of the reasons Node is great. Specifically, you now have answers to the question “why node.js application is scalable?”

Sort:  

Great article, can you provide some quick tutorials on Nodejs?

I'm all the hopes and dreams you have ever had.

I enquired about the languages you were built with not what you are

Thanks, will see what I can do about some simple to follow Nodejs tutorials to get the absolute beginner off. In the meantime, I am working on a series of R basics

@OriginalWorks2 heard you are the one checking plag scores right?

Coin Marketplace

STEEM 0.18
TRX 0.13
JST 0.028
BTC 57688.87
ETH 3100.54
USDT 1.00
SBD 2.37