
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@glidemq/dashboard
Advanced tools
Web dashboard for glide-mq - queue monitoring, management, and AI observability
Real-time dashboard for glide-mq - queue monitoring with AI observability. Drop-in Express middleware, no frontend build required.
npm install @glidemq/dashboard glide-mq express
Requires glide-mq >= 0.14.0 and Express 4 or 5.
import express from "express";
import { Queue } from "glide-mq";
import { createDashboard } from "@glidemq/dashboard";
const app = express();
const queue = new Queue("payments", {
connection: { addresses: [{ host: "localhost", port: 6379 }] },
});
app.use("/dashboard", createDashboard([queue]));
app.listen(3000);
// Open http://localhost:3000/dashboard
Job detail views include AI fields when present: usage (record-based token/cost breakdown), signals, budgetKey, fallbackIndex, and tpmTokens.
Three dedicated endpoints expose AI orchestration state:
GET /api/queues/:name/flows/:id/usage - Aggregated token/cost usage across all jobs in a flow. Returns the combined usage record.GET /api/queues/:name/flows/:id/budget - Budget state for a flow - current spend, per-category caps, remaining budget. Returns 404 if no budget is set.GET /api/queues/:name/jobs/:id/stream - SSE endpoint for streaming job output chunks. Supports ?lastId= for resumption. Returns event: chunk messages with entry fields as data.SSE event stream (/api/events) now includes usage, suspended, and budget-exceeded events alongside the standard queue lifecycle events.
createDashboard(queues: Queue[], opts?: DashboardOptions): Router
| Option | Type | Default | Description |
|---|---|---|---|
queueEvents | QueueEvents[] | [] | Instances for real-time SSE events |
readOnly | boolean | false | Block all mutation routes with 403 |
authorize | (req, action) => boolean | Promise<boolean> | - | Per-action authorization callback |
Action strings: queue:pause, queue:resume, queue:obliterate, queue:drain, queue:retryAll, queue:clean, job:remove, job:retry, job:promote, job:changePriority, job:changeDelay, scheduler:upsert, scheduler:remove
app.use(
"/dashboard",
createDashboard(queues, {
authorize: (req, action) => {
if (action === "queue:obliterate") return req.session?.user?.role === "admin";
return true;
},
})
);
Queue instances. Does not connect to Valkey/Redis directly.FAQs
Web dashboard for glide-mq - queue monitoring, management, and AI observability
The npm package @glidemq/dashboard receives a total of 434 weekly downloads. As such, @glidemq/dashboard popularity was classified as not popular.
We found that @glidemq/dashboard 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.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.