# @the-/queue

> Queue for the-framework

Latest version **15.4.14** (published 2020-08-30) · MIT license · 0 weekly downloads

## Install

```sh
npm install @the-/queue
pnpm add @the-/queue
yarn add @the-/queue
bun add @the-/queue
```

## Health

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

Positive: no vulnerabilities; high maintenance score.

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

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 15.4.14 |
| Published | 2020-08-30 |
| First published | 2019-03-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=10 |
| Dependencies | 1 |
| Unpacked size | 60.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 5 |
| Author | Taka Okunishi |
| Maintainers | okunishinishi |
| Keywords | lib, the |

## Links

- npm: https://www.npmjs.com/package/@the-/queue
- Repository: https://github.com/the-labo/the
- Homepage: https://github.com/the-labo/the/tree/master/packages/queue#readme
- Issues: https://github.com/the-labo/the#issues
- npm.io page: https://npm.io/package/@the-/queue

## Dependencies (1)

- [asleep](https://npm.io/package/asleep.md) ^1.0.3

## Alternatives

- [@cantoo/pdf-lib](https://npm.io/package/@cantoo/pdf-lib.md) — 297.9K weekly downloads
- [datatables.net-buttons](https://npm.io/package/datatables.net-buttons.md) — 200.1K weekly downloads
- [@ckeditor/ckeditor5-export-pdf](https://npm.io/package/@ckeditor/ckeditor5-export-pdf.md) — 167.0K weekly downloads
- [scanbot-web-sdk](https://npm.io/package/scanbot-web-sdk.md) — 15.0K weekly downloads
- [@syncfusion/ej2-angular-pdfviewer](https://npm.io/package/@syncfusion/ej2-angular-pdfviewer.md) — 8.8K weekly downloads

## Recent versions

- 15.4.14 (latest) — 2020-08-30
- 15.4.12 — 2019-11-02
- 15.4.1 — 2019-04-30
- 15.2.0 — 2019-03-31
- 15.1.4 — 2019-03-31
- 15.1.3 — 2019-03-30
- 15.1.2 — 2019-03-30
- 15.1.0 — 2019-03-29
- 15.0.3 — 2019-03-21
- 15.0.2 — 2019-03-20

## README

@the-/queue
==========

<!---
This file is generated by @the-/templates. Do not update manually.
--->

<!-- Badge Start -->
<a name="badges"></a>

[![npm Version][bd_npm_shield_url]][bd_npm_url]

[bd_repo_url]: https://github.com/the-labo/the
[bd_npm_url]: http://www.npmjs.org/package/@the-/queue
[bd_npm_shield_url]: http://img.shields.io/npm/v/@the-/queue.svg?style=flat

<!-- Badge End -->


<!-- Description Start -->
<a name="description"></a>

Queue for the-framework

<!-- Description End -->


<!-- Overview Start -->
<a name="overview"></a>




<!-- Overview End -->


<!-- Sections Start -->
<a name="sections"></a>

<!-- Section from "doc/readme/01.Installation.md.hbs" Start -->

<a name="section-doc-readme-01-installation-md"></a>

Installation
-----

```bash
$ npm install @the-/queue --save
```


<!-- Section from "doc/readme/01.Installation.md.hbs" End -->

<!-- Section from "doc/readme/02.Usage.md.hbs" Start -->

<a name="section-doc-readme-02-usage-md"></a>

Usage
---------

```javascript
'use strict'

const { TheQueue } = require('@the-/queue')

const asleep = (delay) => new Promise((resolve) => setTimeout(resolve, delay))

async function tryExample() {
  const queue = new TheQueue({
    autoStart: false,
  })
  const results = []
  queue.push(async () => {
    await asleep(100)
    results.push('hi')
  })
  queue.push(async () => {
    await asleep(0)
    results.push('yo')
  })
  console.log(results) // => []
  queue.start()
  await queue.wait() // Wait to consume all queues
  console.log(results) // => ['hi', 'yo'] // Executed sequentially
}

tryExample().catch((err) => console.error(err))

```


<!-- Section from "doc/readme/02.Usage.md.hbs" End -->


<!-- Sections Start -->

<a name="api"></a>

## API Guide


- module:@the-/queue
  - [.ConcurrentQueue(concurrency)](./doc/api/api.md#module_@the-/queue.ConcurrentQueue)
  - [.create(args)](./doc/api/api.md#module_@the-/queue.create)
  - [.default()](./doc/api/api.md#module_@the-/queue.default)
  - [.TheQueue](./doc/api/api.md#module_@the-/queue.TheQueue)
- TheQueue
  - [#push(task)](./doc/api/api.md#TheQueue#push)
  - [#start()](./doc/api/api.md#TheQueue#start)
  - [#stop()](./doc/api/api.md#TheQueue#stop)
  - [#wait(options)](./doc/api/api.md#TheQueue#wait)
- global
  - [wait()](./doc/api/api.md#wait)

See [API Guide](./doc/api/api.md) for more detail


<!-- LICENSE Start -->
<a name="license"></a>

License
-------
This software is released under the [MIT License](https://github.com/the-labo/the/blob/master/LICENSE).

<!-- LICENSE End -->


<!-- Links Start -->
<a name="links"></a>

Links
------

+ [THE Labo][the_labo_url]

[the_labo_url]: https://github.com/the-labo

<!-- Links End -->

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