An open API service indexing awesome lists of open source software.

https://github.com/mull/sequential-promise

Run promises sequentially
https://github.com/mull/sequential-promise

Last synced: 5 months ago
JSON representation

Run promises sequentially

Awesome Lists containing this project

README

          

A simple way to run promises in a sequence.

## How to use
[See example.js which is a runnable example](/example.js)

There's essentially two ways to run promises. The function expects an array of either type:
- promise
- function returning a promise

Which one to use boils down to:
- should the async operations start all at once
- should the next operation only start when the previous one finishes?

## TODO
- better example of exception handling
- tests for when promise rejects
- option to stop on first failure