
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
@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
The npm package @queuedash/sdk receives a total of 33 weekly downloads. As such, @queuedash/sdk popularity was classified as not popular.
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
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.