
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@queuedash/sdk
Advanced tools
Official SDK for Queuedash - Real-time monitoring for BullMQ, Bull, and Bee-Queue.
npm install @queuedash/sdk
# or
pnpm add @queuedash/sdk
# or
yarn add @queuedash/sdk
The SDK auto-detects your queue library (BullMQ, Bull, or Bee-Queue) - just use attach():
import { Queue } from "bullmq";
import { Queuedash } from "@queuedash/sdk";
const qd = new Queuedash({ apiKey: process.env.QUEUEDASH_API_KEY });
const myQueue = new Queue("my-queue", {
connection: { host: "localhost", port: 6379 },
});
qd.attach(myQueue);
// Jobs are now automatically synced to Queuedash
import Queue from "bull";
import { Queuedash } from "@queuedash/sdk";
const qd = new Queuedash({ apiKey: process.env.QUEUEDASH_API_KEY });
const myQueue = new Queue("my-queue", "redis://localhost:6379");
qd.attach(myQueue);
import Queue from "bee-queue";
import { Queuedash } from "@queuedash/sdk";
const qd = new Queuedash({ apiKey: process.env.QUEUEDASH_API_KEY });
const myQueue = new Queue("my-queue", {
redis: { host: "localhost", port: 6379 },
});
qd.attach(myQueue);
import { Queue } from "bullmq";
import { Queuedash } from "@queuedash/sdk";
const qd = new Queuedash({ apiKey: process.env.QUEUEDASH_API_KEY });
const connection = { host: "localhost", port: 6379 };
qd.attach(new Queue("emails", { connection }));
qd.attach(new Queue("reports", { connection }));
qd.attach(new Queue("notifications", { connection }));
Get your API key from Queuedash:
# Set in your environment
QUEUEDASH_API_KEY=sk_live_...
const qd = new Queuedash({
// Required: Your API key from Queuedash
apiKey: string,
// Optional: Custom API URL (default: https://api.queuedash.com)
baseUrl?: string,
// Optional: Batch size for syncing jobs (default: 50)
batchSize?: number,
// Optional: Flush interval in milliseconds (default: 100)
flushInterval?: number,
// Optional: Max retry attempts with exponential backoff (default: 5)
maxRetries?: number,
// Optional: Request timeout in milliseconds (default: 30000)
requestTimeout?: number,
// Optional: Max jobs to queue in memory (default: 10000)
maxQueueSize?: number,
// Optional: Error handler called on critical failures
onError?: (error: Error) => void,
});
The SDK is production-ready with multiple layers of protection:
Retry Logic
Circuit Breaker
Memory Protection
Graceful Shutdown
await qd.stop() to manually stopRequest Safety
MIT
FAQs
Queuedash SDK for real-time queue monitoring
We found that @queuedash/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.