Source: node-queue Section: javascript Maintainer: Debian Javascript Maintainers Uploaders: Emfox Zhou Build-Depends: debhelper-compat (= 14) , dh-sequence-nodejs , dh-sequence-single-binary , node-inherits , node-tape Standards-Version: 4.7.4 Homepage: https://github.com/jessetane/queue Vcs-Git: https://salsa.debian.org/js-team/node-queue.git Vcs-Browser: https://salsa.debian.org/js-team/node-queue Testsuite: autopkgtest-pkg-nodejs Package: node-queue Architecture: all Depends: node-inherits , nodejs:any Description: asynchronous function queue with adjustable concurrency queue is a well-tested, dependency-light implementation of a FIFO job queue for asynchronous work. Jobs are plain functions taking a callback; the number of jobs allowed to run at once is controlled by a concurrency setting that can be changed while the queue is running, and jobs may also be added before the queue is started. . Workers can report results or errors either through the callback or by returning a promise, and the queue emits start, end, success and error events so that progress can be tracked. . Node.js is an event-based server-side JavaScript engine.