Show HN: Sidequest.js – Background jobs for Node.js using your database
Quick Start Guide This guide will help you quickly set up Sidequest.js in your Node.js application. To install Sidequest.js, check out Installation Guide. If you are strictly following this quick start, you should install the SQLite backend driver, which is the default backend for Sidequest.js. 2. Job Creation The first step is to create a Job class. This class will define the job's behavior and can be customized as needed. typescript // jobs/EmailJob.js import { Job } from "sidequest"