
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@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 357 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.