0.0.1 • Published 11 years ago

run-cb v0.0.1

Weekly downloads
4
License
-
Repository
github
Last release
11 years ago

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.