How event loop work in Node.js?

Syed Ammar - Aug 17 - - Dev Community

The event loop is a core concept in Node.js that enables it to handle asynchronous operations efficiently. Here's a simplified explanation of how it works:

1. Single Threaded Nature

Node.js operates on a single thread. This means it can only execute one piece of code at a time. However, Node.js is designed to handle many operations concurrently without requiring multiple threads.

2. Non-Blocking I/O

Node.js uses non-blocking I/O operations. When Node.js performs tasks like reading files, querying a database, or making network requests, it doesn't wait for these tasks to complete before moving on to the next task. Instead, it continues executing other code while these tasks are being processed.

3. Event Loop Mechanism

The event loop is responsible for managing the execution of code and handling asynchronous events. It continuously checks the "queue" of tasks and decides which ones to execute. Here's a step-by-step breakdown:

  • Initialize: When a Node.js application starts, it initializes and sets up the environment.
  • Execution Phase: Node.js executes any initial code synchronously. If there are asynchronous tasks (like file reading or HTTP requests), they are handed off to the system's APIs.
  • Event Loop Phases: The event loop has several phases, and it processes tasks in each phase in a specific order:
    • Timers Phase: Executes callbacks scheduled by setTimeout() and setInterval().
    • IO Callbacks Phase: Executes callbacks for I/O operations, such as file reads or network requests.
    • Idle, Prepare Phase: Internal phase used for system tasks.
    • Poll Phase: Retrieves new I/O events, executing their callbacks. If the poll queue is empty, it will check if there are callbacks in the setImmediate() queue.
    • Check Phase: Executes callbacks scheduled by setImmediate().
    • Close Callbacks Phase: Handles close events, such as those emitted by socket.on('close').
  • Re-check and Exit: If the event loop has no more tasks to process, it will exit, allowing the program to terminate. If there are tasks still pending, it will continue running.

4. Callback Queue

Asynchronous tasks, once completed, push their callbacks to a queue. The event loop picks these callbacks from the queue and executes them in order.

5. Microtask Queue (Next Tick)

Apart from the main queue, there's also a microtask queue (or next tick queue) where callbacks scheduled with process.nextTick() or promises' .then() handlers are queued. Microtasks have priority over regular callbacks, meaning they are executed after the current operation completes but before the event loop moves on to the next phase.

Example

Here's a simple example to illustrate how the event loop works:

const fs = require('fs');

console.log('Start');

fs.readFile('file.txt', (err, data) => {
  if (err) throw err;
  console.log('File read complete');
});

console.log('End');
Enter fullscreen mode Exit fullscreen mode

Output:

Start
End
File read complete
Enter fullscreen mode Exit fullscreen mode

Explanation:

  1. console.log('Start'); and console.log('End'); are executed synchronously.
  2. fs.readFile initiates an asynchronous file read operation and continues executing the next line of code without waiting.
  3. Once the file read operation completes, its callback (console.log('File read complete');) is pushed to the event loop's callback queue.
  4. The event loop processes the callback after the synchronous code execution completes.

The event loop allows Node.js to efficiently handle many operations at once, despite being single-threaded, by delegating operations to the system and handling their results asynchronously.

The Event Loop orchestrates the execution of tasks, prioritizing the Microtask Queue to ensure promises and related operations are resolved quickly before moving on to tasks in the Main Task Queue (Macro Task).

This dynamic enables JavaScript to handle complex asynchronous behavior in a single-threaded environment.

. . . . . .
Terabox Video Player