run-cb

0.0.1 • Public • Published

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.

Readme

Keywords

none

Package Sidebar

Install

npm i run-cb

Weekly Downloads

0

Version

0.0.1

License

BSD

Last publish

Collaborators

  • rquinlivan