Node.js and Non-Blocking Operations

Due to its event-driven, non-blocking architecture, Node.js is renowned for its efficiency and scalability. This design allows Node.js to handle numerous operations concurrently, making it ideal for building high-performance, real-time applications.

This section will explore the concept of non-blocking operations and explain why it's so useful.

Blocking vs Non-Blocking Operations

To grasp the power of non-blocking operations, let's first understand the difference between blocking and non-blocking operations.

Here's a visual representation of blocking vs non-blocking operations:

This diagram illustrates the difference between blocking and non-blocking operations using boxes on a timeline

For blocking operations:

  • Three boxes are shown side by side, labeled "Task 1", "Task 2", and "Task 3".
  • Each box represents a task and is arranged sequentially from left to right.
  • A time arrow below indicates that time progresses from left to right.
  • This arrangement shows that in blocking operations, tasks are executed one after another, with each task waiting for the previous one to complete before starting.

For non-blocking operations:

  • Three boxes are stacked vertically, also labeled "Task 1", "Task 2", and "Task 3".
  • The boxes are aligned at their left edges, starting at the same point in time.
  • A time arrow below indicates that time progresses from left to right.
  • This arrangement shows that in non-blocking operations, all tasks can start at roughly the same time, executing concurrently rather than sequentially.

The critical difference illustrated is that blocking operations require each task to finish before the next one starts. In contrast, non-blocking operations allow tasks to run concurrently, potentially finishing in a different order than they were started.

Blocking Operations Example

Let's look at a blocking example to understand how it works:

function sleep(ms) {
    const start = Date.now();
    while (Date.now() - start < ms) {
        // Blocking loop
    }
}

console.log("Starting task 1");
sleep(2000);
console.log("Task 1 completed");

console.log("Starting task 2");
sleep(1000);
console.log("Task 2 completed");

console.log("All tasks completed");

In this blocking example:

  1. We define a sleep function that uses a while loop to block execution for a specified number of milliseconds.
  2. We start task 1, which blocks for 2000 milliseconds (2 seconds) before completing.
  3. Only after task 1 is fully complete do we start task 2, which blocks for 1000 milliseconds (1 second).
  4. The "All tasks completed" message is printed only after both tasks have finished sequentially.

When you run this code, you'll see the following output, with noticeable pauses between each line:

Starting task 1
Task 1 completed
Starting task 2
Task 2 completed
All tasks completed

The total execution time will be about 3 seconds, and the program is unresponsive during the sleep periods.

Non-Blocking Operations in Node.js

In contrast, Node.js uses non-blocking operations. These are achieved through callbacks, promises, or async/await syntax. Here's a simple example:

console.log("Starting task 1");
setTimeout(() => {
    console.log("Task 1 completed");
}, 2000);

console.log("Starting task 2");
setTimeout(() => {
    console.log("Task 2 completed");
}, 1000);

console.log("All tasks initiated");

In this example, both tasks are initiated almost immediately but are completed at different times based on their set timeouts. When you run this code, you'll see:

Starting task 1
Starting task 2
All tasks initiated
Task 2 completed
Task 1 completed

Notice how all tasks are initiated quickly, and the program doesn't wait for each task to complete before moving on. The total execution time is only about 2 seconds (the duration of the longest timeout), and the program remains responsive throughout.

Run the blocking and non-blocking code examples in your own .js files and execute them with Node.js to observe the difference.


By understanding how Node.js's non-blocking, event-driven architecture works and its benefits, you can use it to create efficient and responsive Node.js applications.

BeginnerNodejs
Avatar for Niall Maher

Written by Niall Maher

Founder of Codú - The web developer community! I've worked in nearly every corner of technology businesses: Lead Developer, Software Architect, Product Manager, CTO, and now happily a Founder.

Loading

Fetching comments

Hey! 👋

Got something to say?

or to leave a comment.