# callasync

> Group and call functions asynchronously

Latest version **1.0.2** (published 2017-02-20) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2017-02-20 |
| First published | 2017-02-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Anton Yefremov |
| Maintainers | yefremov |
| Keywords | async |

## Links

- npm: https://www.npmjs.com/package/callasync
- Repository: https://github.com/yefremov/callasync
- Homepage: https://github.com/yefremov/callasync#readme
- Issues: https://github.com/yefremov/callasync/issues
- npm.io page: https://npm.io/package/callasync

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

- 1.0.2 (latest) — 2017-02-20
- 1.0.1 — 2017-02-20
- 1.0.0 — 2017-02-14

## README

# callasync

[![npm version](https://badge.fury.io/js/callasync.svg)](https://badge.fury.io/js/callasync)
[![Build Status](https://travis-ci.org/yefremov/callasync.svg?branch=master)](https://travis-ci.org/yefremov/callasync)
[![Coverage Status](https://coveralls.io/repos/github/yefremov/callasync/badge.svg?branch=master)](https://coveralls.io/github/yefremov/callasync?branch=master)


Essential utility function that groups and calls functions asynchronously on
the same tick respecting order of invocation.

## Installation

```bash
$ npm install --save callasync
```

## API

```js
var callasync = require('callasync');

// both functions `foo()` and `bar()` will be
// called async but on a same tick

callasync(function foo() {
  // function body
});

callasync(function bar() {
  // function body
});
```

## Running tests

```bash
$ npm install
$ npm test
```

## License

[MIT](LICENSE)

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