Node.js Node.js is a JavaScript framework which build on V8 engine and Chrome' s JS engine. It's open source and supports to all server-side and network applications. Developers' main purpose was to build a framework that supports to create real-time websites websockets. Node.js holds the wold largest open source library. It's lightweight and efficient because of the event driven, non-blocking I/O model. Where to use Node.js Node.js is specifically made to build fast and scalable network applications. It also can be use to computational applications but is doesn't suite to heavy computational and CPU intensive applications. Node.js use non-blocking I/O model to handle huge numbers of simultaneous connections upto 1 Million with high throughput without spawn threads to each connection. Because of that Node.js is using small amount of resources when comparing with other frameworks. Node.js is highly applicable to Data Streaming applicat...