Skip to content

Instantly share code, notes, and snippets.

@toboid
Last active June 18, 2017 15:17
Show Gist options
  • Save toboid/6d348ea8439bf72640a7e6d474f46df5 to your computer and use it in GitHub Desktop.
Save toboid/6d348ea8439bf72640a7e6d474f46df5 to your computer and use it in GitHub Desktop.
util.promisify basic
const {promisify} = require('util');
const fs = require('fs');
const readFile = promisify(fs.readFile);
readFile('./foo.txt').then(
fileContents => console.log(fileContents.toString()),
error => console.error(error)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment