
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
Sidequest is a modern, scalable background job processor for Node.js applications.
Sidequest is a modern, scalable background job processor for Node.js applications. Built with TypeScript and designed for production use, it provides reliable job processing with multiple database backends, a beautiful web dashboard, and comprehensive monitoring capabilities.
For the complete documentation, visit docs.sidequestjs.com.
For a comprehensive FAQ, visit docs.sidequestjs.com/faq.
To get started with Sidequest, first install the main package:
npm install sidequest
# or
yarn add sidequest
To keep the application minimal, the main package does not include the backend drivers. Thus you need to install only the driver you will use:
PostgreSQL (recommended)
npm install @sidequest/postgres-backend
# or
yarn add @sidequest/postgres-backend
npm install @sidequest/sqlite-backend
# or
yarn add @sidequest/sqlite-backend
npm install @sidequest/mysql-backend
# or
yarn add @sidequest/mysql-backend
// jobs/EmailJob.js
import { Job } from "sidequest";
export class EmailJob extends Job {
async run(to, subject, body) {
console.log(`Sending email to ${to}: ${subject}`);
// Your email sending logic here
return { sent: true, timestamp: new Date() };
}
}
// app.js
import { Sidequest } from "sidequest";
// Start Sidequest
await Sidequest.start({
// You can leave the config empty to use the default SQLite backend.
// Make sure to install the SQLite backend driver if you want to use it.
backend: {
driver: "@sidequest/postgres-backend",
config: "postgres://postgres:postgres@localhost:5432",
},
});
console.log("Sidequest started! Dashboard: http://localhost:8678");
// Somewhere in your application
import { Sidequest } from "sidequest";
import { EmailJob } from "./jobs/EmailJob.js";
// Simple job
await Sidequest.build(EmailJob).enqueue("user@example.com", "Welcome!", "Thanks for signing up!");
We welcome contributions! Please see our Contributing Guidelines for details.
This project is licensed under the LGPL-3.0-or-later license.
Made with ❤️ by Lucas Merencia and Giovani Guizzo
FAQs
Sidequest is a modern, scalable background job processor for Node.js applications.
The npm package sidequest receives a total of 2,315 weekly downloads. As such, sidequest popularity was classified as popular.
We found that sidequest demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.