bullwatch-hono
v0.1.0-beta.0
Published
Hono adapter for bullwatch — mount the dashboard as a sub-app.
Maintainers
Readme
bullwatch-hono
Hono sub-app for bullwatch — a deep, local-first BullMQ dashboard. Works on Node, Bun, Deno, and edge runtimes.
npm i bullwatch-hono@betaimport { Hono } from "hono";
import { bullwatchHono } from "bullwatch-hono";
const app = new Hono();
app.route("/admin/queues", bullwatchHono({
connection: { host: "localhost", port: 6379 },
// queues: ["email", "payments"], // omit to auto-discover
}));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
