after-sequence

Run several async functions and run a callback when they are gone.

OTHER License

Downloads
9
Stars
9
Committers
1

after-sequence

Run several async functions and run a callback when they are gone.

Install

npm install after-sequence

Example

var afterSequence = require('after-sequence');

var next = afterSequence(function(err) {
  console.log('Done!');
});

next(function(cb) {
  setTimeout(function() {
    console.log('Hello');
    cb();
  }, 400);
});

next(function(cb) {
  setTimeout(function() {
    console.log('there');
    cb();
  }, 400);
});

next(function(cb) {
  setTimeout(function() {
    console.log('what\'s');
    cb();
  }, 400);
});

next(function(cb) {
  setTimeout(function() {
    console.log('up?');
    cb();
  }, 400);
});

License

MIT