Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
•
Podcasts & Audio BriefingsIBM Technology: Are AI labs ignoring cybersecurity experts?(23.09.2026 um 12:00 Uhr)
•
AI & KI NachrichtenIBM Technology: You Can't Keep Powerful AI Secret for Long🤖(23.09.2026 um 18:00 Uhr)
••
Sicherheitslücken (CVE)Security Weekly - A CRA Resource: Two People Can’t Do Everything(24.09.2026 um 16:00 Uhr)
•
AI & KI NachrichtenLiveOverflow: They Hacked OpenAI! #shorts(24.09.2026 um 12:00 Uhr)
••
Podcasts & Audio BriefingsSecurity-Insider: Klein anfangen ist der Schlüssel! #podcast #cybersecurity(21.09.2026 um 08:00 Uhr)
•
Podcasts & Audio BriefingsSecurity-Insider: Die Zukunft der digitalen Welt! #podcast #cybersecurity(22.09.2026 um 08:00 Uhr)
•
Reverse EngineeringGitHub Release: icsharpcode/ILSpy v11.1 (23.09.2026)(23.09.2026 um 08:43 Uhr)
••
Podcasts & Audio BriefingsIBM Technology: Are AI labs ignoring cybersecurity experts?(23.09.2026 um 12:00 Uhr)
•
AI & KI NachrichtenIBM Technology: You Can't Keep Powerful AI Secret for Long🤖(23.09.2026 um 18:00 Uhr)
••
Sicherheitslücken (CVE)Security Weekly - A CRA Resource: Two People Can’t Do Everything(24.09.2026 um 16:00 Uhr)
•
AI & KI NachrichtenLiveOverflow: They Hacked OpenAI! #shorts(24.09.2026 um 12:00 Uhr)
••
Podcasts & Audio BriefingsSecurity-Insider: Klein anfangen ist der Schlüssel! #podcast #cybersecurity(21.09.2026 um 08:00 Uhr)
•
Podcasts & Audio BriefingsSecurity-Insider: Die Zukunft der digitalen Welt! #podcast #cybersecurity(22.09.2026 um 08:00 Uhr)
•
Reverse EngineeringGitHub Release: icsharpcode/ILSpy v11.1 (23.09.2026)(23.09.2026 um 08:43 Uhr)
•
Intelligence View
⚡ tsecurity.de Intelligence

Just launched: Sidequest.js, a background job processing for Node.js using your existing database.

Hey folks 👋 A while ago I built node-cron, a small library to schedule recurring tasks in Node.js. It got pretty popular (5M+ downloads/month), and I'm happy to see how widely it’s been adopted. But over time, I noticed a recurring issu…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

Hey folks 👋



A while ago I built node-cron, a small library to schedule recurring tasks in Node.js. It got pretty popular (5M+ downloads/month), and I'm happy to see how widely it’s been adopted.



But over time, I noticed a recurring issue: people were running it inside production APIs (like Express apps), which led to some serious problems. Running background jobs inside Express apps can cause blocking I/O and make your API unresponsive.



Also, if your app is deployed across multiple instances, each one might run the same job, unless you set up a distributed locking mechanism manually.



To solve that, we created Sidequest.js, a background job runner for Node.js focused on simplicity, isolation, and zero lock-in.



It’s inspired by Oban (Elixir) and Sidekiq (Rails), but works with infrastructure most people already have. You can use PostgreSQL, MySQL, SQLite, or MongoDB as a backend, reusing the same database your app already relies on.



Jobs run in worker threads, isolated from your app’s main process. The system supports:




  • unique jobs

  • retries with exponential backoff

  • snoozing & priorities

  • concurrency control



Here’s how it looks in code:




import { Sidequest, Job } from "sidequest";

export class EmailJob extends Job {
async run(to, subject) {
console.log(`Sending email to ${to}: ${subject}`);
}
}

// Enqueue
await Sidequest.build(EmailJob).enqueue("[email protected]", "Welcome!");

// Starting Sidequest
Sidequest.start({
backend: {
driver: "@sidequest/postgres-backend",
config: "postgres://postgres:postgres@localhost:5432/my_database"
}
});







There's also a dashboard to monitor everything:





If you’ve used BullMQ and want something that doesn’t depend solely on Redis, or if you’re tired of being locked into SQS or other cloud services — give Sidequest a try.



Just released the first stable version. I would love your feedback!





Thanks for checking it out!

CTI Threat Relationship Graph2 Knoten / 1 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
SOC Incident Playbook: Vulnerability Remediation & Verification
title: Detect Exploitation - Just launched: Sidequest.js, a background job processing for Node.js using your existing database.
id: 1537e89f-efea-4668-a94f-d2d9c941e05f
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "Just launched: Sidequest.js, a" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich Just launched: Sidequest.js, a backgroun.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

⚡ Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Just launched: Sidequest.js, a background job processing for Node.js using your existing database.

Thematisch verwandte Begriffe: Just, launched, Sidequestjs, background · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-97360 | HFS2 version 2.4.0 and earlier contains an unauthenticated arbitrary fil…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel • Rechts: nächster Artikel • unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger • Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick