
Product
Introducing Socket MCP for Claude Desktop
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
a-promise-queue
Advanced tools
This is just another promise queue. Simple.
You know this:
npm install a-promise-queue --save
queue = new PromiseQueue([options], [Function callback])
Callback is fired whenever queue is emptied. If callback is not provided, queue will act as a promise which is resolved once queue is finished.
Options:
{
promise: Promise, // the type of promises used. defaults to es6 native promises,
concurrency: Number // set the number of promises to run in parallel.
}
queue.length
Returns number of promises waiting to be executed.
var promise = queue.add(Function generator, [Object options])
Returns a promise which is resolved or rejected when the promise produced by the generator is eventually resolved.
Example options:
{
attempts: number, // if promise fails it will retry this many times.
priority: number, // execution is ordered by priority default = 0.
}
var promise = queue.flush()
Runs all promises currently in the queue concurrently.
Returns a promise which is resolved when all promises are finished.
Any promises added after .flush()
will execute after flush is complete.
var PromiseQueue = require('a-promise-queue');
var delay = (ms) => () => new Promise(resolve => setTimeout(resolve, ms));
var queue = new PromiseQueue(() => console.log('Queue is empty'));
queue.add(delay(100)).then(() => console.log('first this'));
queue.add(() => Promise.reject('then this fails')).catch((e) => console.log('Errored:', e));
queue.add(delay(10)).then(() => console.log('and this succeeds'));
queue.add(delay(10), { priority: 1 }).then(() => console.log('but not before this one jumps the queue.'));
FAQs
A native es6 promise queue with optional retry attempts.
The npm package a-promise-queue receives a total of 29 weekly downloads. As such, a-promise-queue popularity was classified as not popular.
We found that a-promise-queue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.