Node.js is based upon an event-driven, light-weight, and non-blocking I/O model. This is a lightweight, minimal framework based on the Google Chrome V8 engine . The Event-loops are the soul of event-driven programming, almost all the programs using UI use event-loops to detect and react to the user events. Like Clicking a button, Ajax Requests, etc. Node.js is a command-line tool(See getting started with Node ). It is a high-performance network application, JavaScript minimal framework well suitable for the concurrent environments. Node is not just JavaScript, its major part is written in C/C++ . Node.js Architecture Node uses event-loops by JavaScript callbacks to implement the non-blocking I/O. (We must always keep in mind that JavaScript used in Node is not exactly same as we know, it is different, in fact, it is no DOM implementation used by Node, so be careful). Everything inside the Node runs upon a single thread(main thread) , ...