@egoist/promise-queue
Install
For Node.js / Yarn:
yarn add @egoist/promise-queue
For Node.js / NPM:
npm i @egoist/promise-queue
For Deno:
import { PromiseQueue } from 'https://unpkg.com/@egoist/promise-queue/mod.ts'
Usage
Example using Node.js CommonJS require
:
const { PromiseQueue } = require('@egoist/promise-queue')
const processor = async (jobId, resolution, format) => {
}
const queue = new PromiseQueue(processor)
queue.add('process-video-id-xxxx', '720p', 'mp4')
await queue.run()
TypeDoc
https://doc.deno.land/https/raw.githubusercontent.com/egoist/promise-queue/master/src/index.ts
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Author
@egoist/promise-queue © EGOIST, Released under the MIT License.
Authored and maintained by EGOIST with help from contributors (list).
github.com/egoist · GitHub @EGOIST · Twitter @_egoistlily