# lib-async

> Yet another simple Promises/A+ compliant async flow control using ES6 generators.

Latest version **0.2.2** (published 2015-09-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install lib-async
pnpm add lib-async
yarn add lib-async
bun add lib-async
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.2 |
| Published | 2015-09-08 |
| First published | 2015-06-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Adam Timberlake |
| Maintainers | wildhoney |
| Keywords | promises, generators, flow control, asynchronous, async, await, es6 |

## Links

- npm: https://www.npmjs.com/package/lib-async
- Repository: https://github.com/Wildhoney/Async
- Homepage: https://github.com/Wildhoney/Async#readme
- Issues: https://github.com/Wildhoney/Async/issues
- npm.io page: https://npm.io/package/lib-async

## Alternatives

- [@commercetools/sync-actions](https://npm.io/package/@commercetools/sync-actions.md) — 25.1K weekly downloads
- [cwait](https://npm.io/package/cwait.md) — 21.4K weekly downloads
- [@ledgerhq/hw-app-cosmos](https://npm.io/package/@ledgerhq/hw-app-cosmos.md) — 4.2K weekly downloads
- [@financial-times/o-loading](https://npm.io/package/@financial-times/o-loading.md) — 2.8K weekly downloads
- [fa](https://npm.io/package/fa.md) — 185 weekly downloads

## Recent versions

- 0.2.2 (latest) — 2015-09-08
- 0.2.1 — 2015-09-08
- 0.2.0 — 2015-09-08
- 0.1.4 — 2015-06-23
- 0.1.3 — 2015-06-10

## README

# Async

> Yet another simple Promises/A+ compliant async flow control using ES6 generators.

![Travis](http://img.shields.io/travis/Wildhoney/Async.svg?style=flat-square)
&nbsp;
![Bower](https://img.shields.io/bower/v/lib-async.svg?style=flat-square)
&nbsp;
![npm](http://img.shields.io/npm/v/lib-async.svg?style=flat-square)
&nbsp;
![License MIT](http://img.shields.io/badge/License-MIT-lightgrey.svg?style=flat-square)

## Example

```javascript
new Async(function*() {

    const users  = yield getUsers(),
          places = yield getPlaces(users);

    return { users, places };

}).then((models) => console.log(models));
```

---
_Source: https://npm.io/package/lib-async · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
