1.0.0 • Published 8 years ago

promise-series v1.0.0

Weekly downloads
128
License
MIT
Repository
github
Last release
8 years ago

Promise Series

This promise-series modules allows you to queue promise-returning functions to execute in series, chaining values and errors down the line, and returning a final promise.

var series = new PromiseSeries();
series.add(promiseForFile);
series.add(promiseForSearch);
series.add(promiseForWrite);
series.run().then(function() {
	console.log('All done!');
});

This promise utility module has no hard dependencies on any promise implementation, instead relying on the one returned by your functions. Care should be taken to ensure your functions always return promises, even in error.