bullwatch-fastify
v0.1.0-beta.0
Published
Fastify adapter for bullwatch — mount the dashboard as a plugin.
Downloads
116
Maintainers
Readme
bullwatch-fastify
Fastify plugin for bullwatch — a deep, local-first BullMQ dashboard.
npm i bullwatch-fastify@betaimport Fastify from "fastify";
import { bullwatchFastify } from "bullwatch-fastify";
const app = Fastify();
app.register(bullwatchFastify({
connection: { host: "localhost", port: 6379 },
// queues: ["email", "payments"], // omit to auto-discover
}), { prefix: "/admin/queues" });Accepts the full BullwatchOptions
(connection, prefix, queues, readOnly, collectMetrics, mask, auth, …).
Payloads are read live from Redis and never persisted; zero external network calls.
License
MIT
