0.0.1 • Published 13 years ago
run-cb v0.0.1
run-cb
A syntax wrapper for async.series that lets you cleanly run a series of callbacks.
Background
It's often necessary in JavaScript to run asynchronous functions serially. The async module allows a way of doing this, but it requires the use of anonymous callbacks wrapping the function. The goal of run-cb is to wrap async.series in such a way that such modifications are unnecessary.
Usage:
var run = require('run-cb');
run(myCallback, myOtherCallback, myThirdCallback);No wrangling []s or {}s, and no additional callbacks required for flow control – all of that is hidden by run-cb.
0.0.1
13 years ago