Promises - A gentle introduction

NAVIGATION

Callback is called when the results are in

Promise gives you something to work on right now

.then() schedules a dependent step

.catch() handles problems

Things to watch out for

ES6 specification

In order to get anything done in Node.js, you are destined to use asynchronous functions. They prepare an operation and accept a callback that is to be called when the results are in. For your program to work correctly, you typically need to the results of the previous call in your further steps. What you end up with is nesting rest of your script inside a callback. Doing this multiple times leads to code being nested multiple levels.

Nesting code excessively in callbacks may seem counterintuitive and messy. Promises allow you to express a chain of dependent steps without having to excessively nest code.

Callback is called when the results are in

Callbacks are the traditional way of making asynchronous calls. You make a call and pass a function argument that is called at a later time when the operation is complete.

Let us demonstrate callbacks with an example. Let us write a program that will get the current time as a string from UTC Now, write it to disk and ultimately re-read it for printing.

Notice how this short example goes to three levels of nested code.

Promise gives you something to work on right now

When performing an asynchronous call, it is impossible, by definition, to get the results at the time of making the call. This means that any further processing steps are not evaluated until the callback is called and the results arrive.

With Promises, this approach is reversed and multiple processing steps are defined in one sitting. In order to do this, something is needed to represent the results while they don’t exist yet.

To avoid waiting for the results to arrive before defining next steps, a Promise is used as a stand-in for a result.

This stand-in can be used to schedule a dependent step that is to be executed when the actual results arrive. Multiple steps can be chained to create a sequence of steps.

The example written using Promises looks like this.

In order to use Promises, the depended upon libraries were replaced with versions returning Promises. Notice how the code is nested at most one level instead of three levels.

.then() schedules a dependent step

A dependent step is scheduled with the .then() method. It takes a function argument that accepts one parameter for passing the results from the previous step. At most one result value can be passed on to the next step.

A step is ended by returning a value or returning another Promise. In the latter case the Promise is evaluated and its result value will be passed on to the next step.

.catch() handles problems

If .then() is used to define a normal next step, there is similar method .catch() that is used for handling errors. Errors can originate from throwing an exception in your step code or they can originate from the internal implementation of an API call.

If this is a brand new project, make sure to create a package.json first with the npm init command.

fs.readFile("time.txt", "utf8")
  .then((data) => {
    throw new Error();
  })
  .then(() => {
    // skipped
  })
  .catch((e) => {
    console.log("aborted", e);
  });

When an error occurs, execution of current function will stop and execution is continued at nearest following .catch() handler. This may cause skipping any amount .then() handlers in between.

Using catch() handlers ease up error handling. It removes the need to pass on separate err objects as seen with callbacks.

Things to watch out for

Promises are useful and help preventing code marching excessively to the right, but there are a couple of things to watch out.

Only one value can be passed from a step to another. If you need to pass more than one value, you can compose an object literal and return it.

If you need to reference more values than just the result of the immediate preceding step you need to arrange your code to allow this. There are various ways to achieve, for details see for example this Stack Overflow question.

All of these lead to nesting or otherwise complicating code. The goal of Promises was to create cleaner asynchronous code. In parts, Promises do not fully achieve this goal.

ES6 specification

Promises are not the only attempt at solving the infinite nesting callbacks problem. Other available options are libraries such as async, co, generators and fibers to name just a few. But, today Promises are part of the ES6 specification. That merit is hard to ignore when evaluating the available options. Are the other attempts any better? We can make no such promises.

Node doesn't wait for your database call to finish?

Node doesn't wait for your database call to finish?

Learn how asynchronous calls work and make your app run as you intended. Get short email course on asynchronicity and two chapters from Finish Your Node App.

Loading Comments