Skip to content

Changes interface of asynchronous functions to Promises

License

Notifications You must be signed in to change notification settings

sullenor/promisify-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

promisify-api

Changes interface of asynchronous functions to Promises. Functions should be designed using error-first callback pattern.

Installation

$ npm install promisify-api

Usage

promisify(fn, ctx, _)

Creates a wrapper function, which returns Promises.

const fs = require('fs');
const resolve = require('path').resolve;
const promisify = require('promisify-api');

// the second argument (which is context) is optional
const readFile = promisify(fs.readFile, fs);

readFile(resolve('index.js'), 'utf8')
  .then(console.log)
  .catch(console.error);

Arguments:

  • fn (function): The original function.
  • ctx (*): Predefines execution context of the original function.
  • ..._ (*): Possibility to provide additional arguments, that will be prepended to the function.

License

The MIT License

About

Changes interface of asynchronous functions to Promises

Resources

License

Stars

Watchers

Forks

Packages

No packages published