bullwatch-express
v0.1.0-beta.0
Published
Express adapter for bullwatch — mount the dashboard in one line.
Maintainers
Readme
bullwatch-express
Express adapter for bullwatch — a deep, local-first BullMQ dashboard. Mount it on any route in one line.
npm i bullwatch-express@betaimport express from "express";
import { bullwatchExpress } from "bullwatch-express";
const app = express();
app.use("/admin/queues", bullwatchExpress({
connection: { host: "localhost", port: 6379 },
// queues: ["email", "payments"], // omit to auto-discover
// readOnly: true,
// mask: ["**.token", "user.ssn"],
}));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
