
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
@sidequest/dashboard
Advanced tools
@sidequest/dashboard is the web dashboard for Sidequest, a distributed background job queue system.
Web-based monitoring and management dashboard for the Sidequest job processing system.
This package provides a beautiful, responsive web dashboard for monitoring and managing your Sidequest job queues. Built with Express.js, EJS templating, and HTMX for dynamic interactions, the dashboard offers real-time insights into your job processing system without requiring external dependencies or complex setup.
The dashboard includes:
The dashboard is designed to work seamlessly with all Sidequest backends (PostgreSQL, MySQL, SQLite, MongoDB) and automatically connects to your existing job queue infrastructure.
For complete setup instructions, configuration options, and usage guides, visit:
https://docs.sidequestjs.com/dashboard
The documentation covers:
The dashboard is available through the Sidequest regular configuration and is started alongside the Sidequest engine:
import { Sidequest } from "sidequest";
await Sidequest.start({
backend: {
driver: "@sidequest/postgres-backend",
config: "postgresql://localhost:5432/sidequest",
},
dashboard: {
enabled: true,
port: 8678,
auth: {
user: "admin",
password: "secure-password",
},
},
queues: [{ name: "default", priority: 10, workers: 2 }],
});
// Dashboard available at http://localhost:8678
If you prefer to use only the dashboard without starting the Sidequest engine, you can do so by importing and configuring it directly:
import { SidequestDashboard } from "@sidequest/dashboard";
const dashboard = new SidequestDashboard();
await dashboard.start({
enabled: true,
port: 8678,
backendConfig: {
driver: "@sidequest/postgres-backend",
config: "postgresql://localhost:5432/sidequest",
},
auth: {
user: "admin",
password: "secure-password",
},
});
// Dashboard available at http://localhost:8678
LGPL-3.0-or-later
FAQs
@sidequest/dashboard is the web dashboard for Sidequest, a distributed background job queue system.
The npm package @sidequest/dashboard receives a total of 465 weekly downloads. As such, @sidequest/dashboard popularity was classified as not popular.
We found that @sidequest/dashboard demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.