https://github.com/commenthol/asyncc
Just asynchronous patterns
https://github.com/commenthol/asyncc
asynchronous asynchronous-patterns nopromise parallel pattern quene serial
Last synced: 4 months ago
JSON representation
Just asynchronous patterns
- Host: GitHub
- URL: https://github.com/commenthol/asyncc
- Owner: commenthol
- License: mit
- Created: 2016-12-13T20:28:28.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-02-27T19:03:03.000Z (over 1 year ago)
- Last Synced: 2025-05-27T02:04:31.749Z (about 1 year ago)
- Topics: asynchronous, asynchronous-patterns, nopromise, parallel, pattern, quene, serial
- Language: HTML
- Homepage: https://commenthol.github.io/asyncc/
- Size: 821 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# asyncc
> Just async patterns
[](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
* [LICENSE][LICENSE]
[LICENSE]: ./LICENSE.txt