1.0.4 • Published 4 years ago

nodejs-async-queue v1.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

NodeJS AsyncQueue

AsyncQueue is a simple NodeJS Module for running asynchronous functions in a series using a queue structure

Installation

Use the npm package manager to install AsyncQueue.

npm install nodejs-async-queue --save

Usage

const AsyncQueue = require('nodejs-async-queue');
const asyncQueue = new AsyncQueue(YourFunction);
asyncQueue.add('foo','bar') // adds YourFunction('foo','bar') to queue
asyncQueue.list() // returns the queue list

License

MIT

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago