Skip to content
This repository has been archived by the owner on Mar 8, 2019. It is now read-only.

Latest commit

 

History

History
54 lines (41 loc) · 1.65 KB

README.md

File metadata and controls

54 lines (41 loc) · 1.65 KB

promise-async

Last version Build Status Dependency status Dev Dependencies Status NPM Status Donate

Adds Promises bindings for async library. Works with callbacks as well.

Install

npm install promise-async --save

If you want to use in the browser (powered by Browserify):

bower install promise-async --save

and later link in your HTML:

<script src="bower_components/promise-async/dist/promise-async.js"></script>

Usage

const async = require('promise-async')

async.waterfall([
  function (callback) {
    callback(null, 'one', 'two')
  },
  function (arg1, arg2, callback) {
    // arg1 now equals 'one' and arg2 now equals 'two'
    callback(null, 'three')
  },
  function (arg1, callback) {
    // arg1 now equals 'three'
    callback(null, 'done')
  }
]).then(function (value) {
  console.log(value === 'done') // => true
})

License

MIT © Kiko Beats