# asyncc

> Just asynchronous patterns

Latest version **2.0.9** (published 2025-02-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install asyncc
pnpm add asyncc
yarn add asyncc
bun add asyncc
```

## Health

**Score 30/100 (F)** — status: maintenance-mode.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: stale; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.0.9 |
| Published | 2025-02-27 |
| First published | 2016-12-13 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Node | >=6.0.0 |
| Dependencies | 0 |
| Unpacked size | 162.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | commenthol |
| Maintainers | commenthol |
| Keywords | async, callback |

## Links

- npm: https://www.npmjs.com/package/asyncc
- Repository: https://github.com/commenthol/asyncc
- Homepage: https://commenthol.github.io/asyncc/
- Issues: https://github.com/commenthol/asyncc/issues
- npm.io page: https://npm.io/package/asyncc

## 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

- 2.0.9 (latest) — 2025-02-27
- 2.0.8 — 2025-02-11
- 2.0.7 — 2024-09-14
- 2.0.6 — 2021-08-03
- 2.0.4 — 2019-10-26
- 2.0.3 — 2018-06-01
- 2.0.2 — 2018-04-15
- 2.0.1 — 2017-10-17
- 2.0.0 — 2017-07-09
- 1.2.1 — 2017-03-25
- 1.2.0 — 2017-03-25
- 1.1.2 — 2017-01-29
- 1.1.1 — 2017-01-23
- 1.1.0 — 2017-01-22
- 1.0.1 — 2016-12-18
- … 2 more at https://npm.io/package/asyncc/versions

## README

# asyncc

> Just async patterns

[![NPM version](https://badge.fury.io/js/asyncc.svg)](https://www.npmjs.com/package/asyncc/)

Asynchronous patterns, no dependencies, no bloat, more isn't needed.

Runs in the browser and on node. Less than 6kB in size.

- [Latest Documentation](https://commenthol.github.io/asyncc)
- [Documentation for v1](https://commenthol.github.io/asyncc/docs_v1)
- [Migrating to v2](https://github.com/commenthol/asyncc/blob/master/doc/migrate-to-v2.md)

# Serial execution patterns

- [compose](https://commenthol.github.io/asyncc/module-serial.html#.compose)
- [connect](https://commenthol.github.io/asyncc/module-serial.html#.connect)
- [doUntil](https://commenthol.github.io/asyncc/module-serial.html#.doUntil)
- [doWhilst](https://commenthol.github.io/asyncc/module-serial.html#.doWhilst)
- [eachSeries](https://commenthol.github.io/asyncc/module-serial.html#.eachSeries)
- [NoPromise](https://commenthol.github.io/asyncc/NoPromise.html)
- [series](https://commenthol.github.io/asyncc/module-serial.html#.series)
- [times](https://commenthol.github.io/asyncc/module-serial.html#.times)
- [until](https://commenthol.github.io/asyncc/module-serial.html#.until)
- [whilst](https://commenthol.github.io/asyncc/module-serial.html#.whilst)

# Parallel execution patterns

- [each](https://commenthol.github.io/asyncc/module-parallel.html#.each)
- [eachLimit](https://commenthol.github.io/asyncc/module-parallel.html#.eachLimit)
- [parallel](https://commenthol.github.io/asyncc/module-parallel.html#.parallel)
- [parallelLimit](https://commenthol.github.io/asyncc/module-parallel.html#.parallelLimit)
- [Queue](https://commenthol.github.io/asyncc/Queue.html)

# Installation

    npm install --save asyncc

# Usage

As ES6 Modules

```js
import {NoPromise, connect} from 'asyncc'
```

As CommonJS Modules

```js
const {NoPromise, connect} = require('asyncc')
```

or picking individual methods

```js
const connect = require('asyncc/lib/connect')
```

# References

<!-- !ref -->

* [LICENSE][LICENSE]

<!-- ref! -->

[LICENSE]: ./LICENSE.txt

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