Run an array of functions in series
npm install run-series[travis-image]: https://img.shields.io/travis/feross/run-series/master.svg
[travis-url]: https://travis-ci.org/feross/run-series
[npm-image]: https://img.shields.io/npm/v/run-series.svg
[npm-url]: https://npmjs.org/package/run-series
[downloads-image]: https://img.shields.io/npm/dm/run-series.svg
[downloads-url]: https://npmjs.org/package/run-series
[standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg
[standard-url]: https://standardjs.com
!series 
```
npm install run-series
#### series(tasks, [callback])
Run the functions in the tasks array in series, each one running once the previouscallback
function has completed. If any functions in the series pass an error to its callback, no
more functions are run, and is immediately called with the value of the error.callback
Otherwise, receives an array of results when tasks have completed.
##### arguments
- tasks - An array containing functions to run, each function is passed acallback(err, result) which it must call on completion with an error err (which cannull
be ) and an optional result value.callback(err, results)
- - An optional callback to run once all the functions have
completed. This function gets a results array containing all the result arguments passed
to the task callbacks.
##### example
`js
var series = require('run-series')
series([
function (callback) {
// do some stuff ...
callback(null, 'one')
},
function (callback) {
// do some stuff ...
callback(null, 'two')
}
],
// optional callback
function (err, results) {
// the results array will equal ['one','two']
})
`
This module is basically equavalent to
async.series`, but it's
handy to just have the functions you need instead of the kitchen sink. Modularity!
Especially handy if you're serving to the browser and need to reduce your javascript
bundle size.
Works great in the browser with browserify!
- run-auto
- run-parallel
- run-parallel-limit
- run-waterfall
MIT. Copyright (c) Feross Aboukhadijeh.