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

https://github.com/cicec/asyncaro

⌛️ Manage the execution of async methods
https://github.com/cicec/asyncaro

Last synced: 10 months ago
JSON representation

⌛️ Manage the execution of async methods

Awesome Lists containing this project

README

          

# Asyncaro

Manage the execution of async methods

## e.g.

```js
import action from 'asyncaro'

const one = action()
const two = one.next()

one.add(() => fetch('/login'))

// Wait for one to be fully executed
two.add(() => fetch('/profile'))
```