Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 27, 2022 11:00 pm GMT

Node.js visualized: promise, async/await and process.nextTick under the hood

The article assumes you are familiar with the event loop and its phases.
Promises saved the day for thousands of JavaScript developers, but do we know how they work under the hood?

Back in the day, the callback hell was the norm to handle asynchronous operations. A simple JavaScript script to read a file and insert its content into the database could have resembled this snippet.
Callback hell in Node.js

Luckily, we dont have to deal with this nested structure anymore because of promises and async/await.
Node.js promise script

Demystyfing promises

The MDN definition for a promise is "the eventual completion (or failure) of an asynchronous operation."

The definition feels like we are dealing with some form of obscure magic , but, in simple terms, a promise is a container for future value.

A promise behaves to a certain extent like a browser containing either the desired page content or an error message. Whenever we navigate to an address, our web browser can be in three different states:

  • A blank page or a loading spinner could be shown while fetching the data.
  • The page content is successfully displayed.A promise is like a web browser container (success)
  • An error can appear.A promise is like a web browser container (failure)

Similarly, a promise can take three statuses:

  • pending, when for example, the query is not complete;
  • fulfilled, when the network request is complete;
  • rejected, when the asynchronous request has finished.

Hands-on example of promise status

A newly created promise is in pending status.
Promise pending

Similarly, an I/O operation like a database query is pending until it resolves or throws an error.
database promise pending

We can attach a .then/.catch listener to handle the future value of the promise. Once the resolve/reject function is invoked, the promise changes its status from pending to fulfilled/rejected.
Promise resolved

async/await

Modern JavaScript is all about async/await, but these two expressions are an alternative way to write promises.

We can rewrite the database snippet with promises to async/await or vice versa.
async-await promise equivalent

If we are particularly evil , we can mix the syntax and confuse our colleagues (Highly discouraged for readability and consistency ).
Mixing promise and async await syntax

Promises under the hood

Promises seem to be processed synchronously, but their execution is delayed to a specific point in the future.

The following script shows that console.logs are run before the promise callback.
Promise is asynchronous
Under the hood, the V8 engine memorizes the callback function and pushes it to a microtask queue when the promise resolve/reject.
microtask are pushed to the queue
Once the call stack is empty, V8 can process microtasks.
microtasks are pushed for execution once the call stack is empty

Promise microtask queue and the event loop

The microtask queue and the event loop wait for the call stack to be empty before pushing tasks for execution, but which one has the higher priority?

The following script shows that Node.js and its internals will always try to exhaust the microtask queue before handing control back to the event loop and its phases:

setTimeout and Promise.reject queue up a macrotask in the timer phase and a microtask.
setTimeout and Promise.reject queue tasks
The callback in the microtask queue is run before the event loop timer phase. Once there are no microtasks, the event loop can resume its execution.
Node.js setTimeout macrotask and promise microtask processing
The setTimeout callback invokes setImmediate and pushes another promise microtask that will be executed at an empty call stack.
setImmediate and promise within a timeout
Immediate and promise.resolve processing

process.nextTick

Is everything for microtasks?

No, process.nextTick also schedules microtasks that Node.js manages in a dedicated queue and have higher priority than the promise queue and the event loop phases.

In the following script, Node.js places the callback in their queue.
nextTick, setTimeout, promise are scheduled

Once the call stack is empty, Node.js processes the process.nextTick microtasks, followed by the promise queue and the event loop phases.
Microtask and macrotask processing order
If you liked the article, follow us on Twitter @fabrizio.lallo and @AndrewHu368


Original Link: https://dev.to/nodedoctors/nodejs-visualized-promise-asyncawait-and-processnexttick-under-the-hood-234c

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To