9-Dec

JavaScript

A brief look at async-await

2 min read

·

By Markus Karlsen

·

December 9, 2019

In this article, we will look into async-await. Let's start with async functions.

From MDN:

"The async function declaration defines an asynchronous function, which returns an AsyncFunction object. An asynchronous function is a function which operates asynchronously via the event loop, using an implicit Promise to return its result. But the syntax and structure of your code using async functions is much more like using standard synchronous functions."

You can use the async keyword when implementing a function:

async function doSomething() {
  // code
}

Or with arrow functions:

const doSomething = async () => {
  // code
};

All async functions will always return a Promise. However, the await keyword allows you to wait for a promise to be resolved. Let's begin with a simple example:

const addOne = function (number) {
  return new Promise((resolve, reject) => {
    setTimeout(() => {
      resolve(number + 1);
    }, 1000);
  });
};

const asyncFunction = async function () {
  const result = await addOne(1);
  console.log(result);
};

The code await addOne(1) will wait until the promise is resolved and return the 2, similar to:

const someFunction = function () {
  addOne(1).then((result) => console.log(result));
};

The await keyword can't be used at top level code, yet, or in functions without async. Together async and await provide a great framework to write asynchronous code that is easy to understand.

Case

Let's say; you are creating a webpage that allows users to sign documents. However, the documents need to be ready before the user can sign them. The webpage calls an endpoint that returns the current status of the document. Either true or false. If the API doesn't return true within 30 seconds after loading the webpage, the user should be redirected to an error page.

How would you solve this using async-await? The first thing we need is a function that calls the API:

function check() {
  return new Promise((resolve, reject) => {
    setTimeout(() => {
      resolve(get('/resource/check');
    }, 5000);
  });
}

This function waits 5 seconds before calling the API. Let's move on to the async function:

async function waitAndCheck() {
  try {
    for (let i = 0; i < 6; i++) {
      const status = await check();
      if (status) {
        // set state to finished
      }
    }
  } catch (error) {
    // set state to failed
  }
  // set state to not done
}

By making this function async, we solve the problem. The function waitAndCheck will only call the check function 6 times and will not execute longer than 30 seconds. This case could have been solved several ways, for example, we could chain check() like this:

function chain() {
  check()
    .then(result => {
      if (result) {
         // set state to finished
      }
      check()
        .then(result => {
          if (result) {
              // set state to finished
          }
          check()
            .then(result => {
              if (result) {
                 // set state to finished
              }
              check()
                .then(result => {
                  if (result) {
                    // set state to finished
                  }
                  check()
                    .then(result => {
                      if (result) {
                         // set state to finished
                      }

                      // set state to not done
                    })
                    .catch(error =>  // set state to failed);
                })
                .catch(error =>  // set state to failed);
            })
            .catch(error =>  // set state to failed);
        })
        .catch(error =>  // set state to failed);
    })
    .catch(error =>  // set state to failed);
}

That's all! I hope this inspires you to use async-await.

Disclaimer: The code in this article is just for making a point, not something to copy

Up next...

Loading…

Loading…