Exploring Asynchronous Programming in Node.js: A Closer Look at the Event Loop

This guide explains the event loop, making it easier to understand and improve your coding skills.

Exploring Asynchronous Programming in Node.js: A Closer Look at the Event Loop

Introduction


Node.js is a popular server-side runtime that is built on top of Google's V8 JavaScript engine. It has a non-blocking, event-driven architecture that makes it suitable for building scalable, high-performance applications. One of the key components of Node.js is the event loop, which plays a crucial role in the way Node.js handles I/O operations.


In this post, we'll take a deep dive into the Node.js event loop and explore how it works under the hood.


What is the event loop?

The event loop is a mechanism that allows Node.js to perform I/O operations without blocking the main thread of execution. In other words, it's a way for Node.js to handle multiple concurrent operations in a single thread. This makes it possible to build highly performant and scalable applications that can handle a large number of requests without being slowed down by I/O operations.

The event loop is a single-threaded loop that runs continuously, waiting for events to occur. When an event occurs, the event loop executes any associated callback functions and then returns to waiting for the next event.

Phases of the event loop

The event loop in Node.js is made up of several phases, each of which has a specific set of tasks to perform. Here's an overview of the phases:

• Timers: In this phase, any callbacks scheduled by setTimeout() or setInterval() that have expired are executed.

• I/O callbacks: In this phase, any I/O callbacks that have been deferred to the next iteration of the event loop are executed. This includes callbacks for file I/O, network I/O, and other asynchronous operations.

• Idle, prepare: These phases are used internally by Node.js and are not typically used by application developers.

• Poll: This is the heart of the event loop. In this phase, Node.js checks for new I/O events and executes their associated callbacks. If there are no pending I/O events, Node.js will block and wait for new events to occur.

• Check: In this phase, any callbacks that have been deferred using setImmediate() are executed.

• Close callbacks: In this phase, any callbacks that need to be executed before the event loop exits are run. This includes things like closing database connections or cleaning up resources.

The event loop in action

To see the event loop in action, let's consider the following example code:

console.log('start');

setTimeout(() => {
  console.log('timer expired');
}, 0);

setImmediate(() => {
  console.log('immediate callback');
});

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

console.log('end');

Here, we have three different types of asynchronous operations happening: a setTimeout() call, a setImmediate() call, and a file read operation using fs.readFile(). Let's take a look at how each phase of the event loop handles these operations.

Timers

In the setTimeout() call, we are scheduling a callback function to execute after 0 milliseconds. While we might expect the callback to execute immediately, it actually gets added to the timer queue and is executed in the Timers phase of the event loop. Let's see this in action by adding some logging statements to our code:

console.log('start');

setTimeout(() => {
  console.log('timer expired');
}, 0);

console.log('end');

When we run this code, we'll see the following output:

start
end
timer expired

As we can see, the console.log() statements execute first, and then the timer callback function is executed in the Timers phase.

I/O callbacks

In the file read operation using fs.readFile(), we are performing an I/O operation that needs to read data from a file. When the file read operation is complete, the fs.readFile() function will add the callback to the I/O callback queue. The I/O callbacks are executed in the I/O callbacks phase of the event loop. Let's add some logging statements to our code to see this in action:

console.log('start');

setTimeout(() => {
  console.log('timer expired');
}, 0);

setImmediate(() => {
  console.log('immediate callback');
});

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

console.log('end');

When we run this code, we'll see the following output:

start
end
immediate callback
file contents
timer expired

Here, we can see that the immediate callback is executed before the file read operation completes, since it gets added to the Check queue before the file read callback gets added to the I/O callback queue. The file read callback is then executed in the I/O callbacks phase, followed by the timer callback in the Timers phase.

Check

Suppose we have the following code that uses setImmediate() to schedule a callback:

setImmediate(() => {
  console.log('setImmediate callback executed');
});

fs.readFile('/path/to/file', (err, data) => {
  console.log('file read complete');
});

Here, we use setImmediate() to schedule a callback function to be executed as soon as possible after the I/O callbacks have been processed. We also read from a file using fs.readFile(), which is an asynchronous I/O operation.

When this code is executed, the file read operation is added to the I/O callbacks queue. Once all I/O callbacks have been processed, Node.js will move on to the Check phase. In this phase, any callbacks scheduled with setImmediate() will be executed. In this case, the setImmediate() callback is executed after the file read operation has completed and its callback has been executed in the I/O callbacks phase.

So the output of this code would be:

file read complete
setImmediate callback executed

I hope this helps clarify how the Check phase works with setImmediate() callbacks!

Close callbacks

The Close callbacks phase of the event loop is used for handling close events on resources like sockets and file descriptors. When a close event occurs on a resource, the close event is added to the Close callbacks queue. This phase occurs after all I/O callbacks have been executed, so any resources that are closed during I/O callbacks will have their close events handled in the Close callbacks phase.

Let's look at an example of this in action. Suppose we have the following code that creates a TCP server and listens on a specific port:

const net = require('net');

const server = net.createServer((socket) => {
  // Handle incoming connections
});

server.on('close', () => {
  console.log('server closed');
});

server.listen(3000, () => {
  console.log('server listening on port 3000');
});

Here, we create a TCP server and listen on port 3000. When the server is closed, we log a message to the console. When a client connects to the server, the callback function passed to net.createServer() is executed to handle the incoming connection.

Suppose we later decide to close the server by calling server.close(). This will add a close event to the Close callbacks queue. When all I/O callbacks have been executed, the close event will be handled in the Close callbacks phase and our close event handler will be executed, logging a message to the console.

server listening on port 3000
...
server closed


Conclusion

In this guide, we've explored the Node.js event loop and its role in handling asynchronous operations in a non-blocking way. Understanding the event loop is key to writing efficient and scalable Node.js applications, and we've covered the different phases of the loop in detail, including Timers, Pending callbacks, Idle, prepare, Poll, Check, and Close callbacks.

By breaking down these phases and providing examples for each, we've illustrated how the event loop works in practice and how you can use it to write better code. Whether you're building a real-time chat application, processing large amounts of data, or simply looking to improve the performance of your Node.js application, understanding the event loop is crucial.


Enjoying our content? Your support keeps us going! 🚀

Consider buying us a coffee to help fuel our creativity.