step / 0.0.6 last updated 10 months ago created on Feb 21st 2011
Install
npm install --save step
Clone
git clone git@github.com:creationix/step.git
dependencies
No dependencies listed.
maintainers
versions
| 0.0.6 | 10 months ago | creationix |
| 0.0.5 | 4 years ago | creationix |
readme
Step
A simple control-flow library for node.JS that makes parallel execution, serial execution, and error handling painless.
How to install
Simply copy or link the lib/step.js file into your $HOME/.node_libraries folder.
How to use
The step library exports a single function I call Step. It accepts any number of functions as arguments and runs them in serial order using the passed in this context as the callback to the next step.
Notice that we pass in this as the callback to fs.readFile. When the file read completes, step will send the result as the arguments to the next function in the chain. Then in the capitalize function we're doing synchronous work so we can simple return the new value and Step will route it as if we called the callback.
The first parameter is reserved for errors since this is the node standard. Also any exceptions thrown are caught and passed as the first argument to the next function. As long as you don't nest callback functions inline your main functions this prevents there from ever being any uncaught exceptions. This is very important for long running node.JS servers since a single uncaught exception can bring the whole server down.
Also there is support for parallel actions:
Here we pass this.parallel() instead of this as the callback. It internally keeps track of the number of callbacks issued and preserves their order then giving the result to the next step after all have finished. If there is an error in any of the parallel actions, it will be passed as the first argument to the next step.
Also you can use group with a dynamic number of common tasks.
Note that we both call this.group() and group(). The first reserves a slot in the parameters of the next step, then calling group() generates the individual callbacks and increments the internal counter.