SquirtleSquad1988 / node-api-promises

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

General Assembly Logo

Using Promises with the Node API

Prerequisites

Objectives

By the end of this, developers should be able to:

  • Explain the value of using promises instead of callback interfaces.
  • Read Node documentation that uses callbacks and translate that into implementations using promises.
  • Rewrite Node scripts using callbacks as scripts using promises.

Preparation

  1. Fork and clone this repository.
  2. Install dependencies with npm install.

Drawbacks to Callbacks

Asynchronous code necessitates callbacks. But dealing with lots of callbacks can be tricky:

  • Callbacks can be messy when they're nested: "callback hell". See lib/copy-json.js.
  • Each callback will have to handle it's own errors if necessary.
  • In complex programs, it will be hard to tell in what order callbacks fire.

Fortunately, there's a better way: Promises.

Lab: Research the Promises API

Promises are objects that represent steps in an asynchronous process. As of 2016, they are natively supported in Node.

Take a few minutes to read the API documentation on Promises. Note function signatures and argument types as you read. What arguments does a promise take when it is constructed?

  1. Promise Syntax
  2. Promise.prototype

Annotate-Along: Using Promises Instead of Callbacks

Promises offer several advantages over callbacks.

  • Promises, like callbacks, make asynchronicity explicit.
  • Promises, unlike callbacks, clarify the order of execution.
  • Promises are easier to read than callbacks.
  • Promises can simplify error handling.
// remember that callback is something you write, in this case to perform some
// processing on parsed JSON
const readJSON = function (filename, callback){
  fs.readFile(filename, 'utf8', function (err, res){
    if (err) {
      return callback(err); // what's going on here?
    }
    callback(null, JSON.parse(res)); // what if JSON.parse errors out?
  });
};

What are some weaknesses in this code? And the following?

const readJSON = function (filename, callback){ // 👀 here
  fs.readFile(filename, 'utf8', function (err, res){
    if (err) {
      return callback(err); // pass the error from readFile
    }
    try {
      res = JSON.parse(res);
    } catch (ex) {
      return callback(ex); // pass the error from JSON.parse
    }
    callback(null, res); // don't pass the error, since we should have caught it
  });
};

What about this instead?

const readJSON = function (filename) { // <-- look here
  return new Promise((resolve, reject) => {
    fs.readFile(filename, { encoding: 'utf8' }, (err, res) => {
      if (err) {
        reject(err);
      } else {
        resolve(res);
      }
    });
  })
  .then((res) => {
    return JSON.parse(res)
  });
};

readJSON('./example.json')
  .then((pojo) => {
    callback(pojo); // do something with the object
  })
  .catch((err) => { // handle error conditions
    console.error(err);
  });

That's too verbose. This is better:

const readJSON = function (filename) {
  return new Promise((resolve, reject) => {
    fs.readFile(filename, { encoding: 'utf8' }, (err, res) => {
      if (err) {
        reject(err);
      } else {
        resolve(res);
      }
    });
  })
  .then(JSON.parse); // what can we surmise about .then?
};


readJSON('./example.json')
  .then(callback) // do something with the object
  .catch(console.error);  // handle error conditions

Code-Along: Promisify copy-json.js

Lab: Promisify hey-yall.js

Lab: Promisify randomizer.js

Additional Resources

  1. All content is licensed under a CC­BY­NC­SA 4.0 license.
  2. All software code is licensed under GNU GPLv3. For commercial use or alternative licensing, please contact legal@ga.co.

About

License:Other


Languages

Language:JavaScript 100.0%