npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

plainjobs

v0.0.4

Published

A queue based on SQLite capable of processing 40k jobs/s.

Downloads

366

Readme

plainjobs

A SQLite-backed job queue processing 15k jobs/s.

Getting Started

Install plainjobs:

npm install plainjobs

Here's a minimal example to get you started:

import Database from "better-sqlite3";
import { defineQueue, defineWorker } from "plainjobs";

const db = new Database("queue.db");
const queue = defineQueue({ connection: db });

// Define a worker
const worker = defineWorker(
  "print",
  async (job) => {
    console.log(`Processing job ${job.id}: ${job.data}`);
  },
  { queue }
);

// Add a job
queue.add("print", "Hello, plainjobs!");

// Start the worker
worker.start();

Features

  • SQLite-backed: Reliable persistence using better-sqlite3
  • High performance: Process up to 15,000 jobs per second
  • Cron-scheduled jobs: Easily schedule recurring tasks
  • Automatic job cleanup: Remove old completed and failed jobs
  • Job timeout handling: Requeue jobs if a worker dies
  • Custom logging: Integrate with your preferred logging solution
  • Lightweight: No external dependencies beyond better-sqlite3 and a cron-parser

Usage

Creating a Queue

import Database from "better-sqlite3";
import { defineQueue } from "plainjobs";

const db = new Database("queue.db");
const queue = defineQueue({
  connection: db,
  timeout: 30 * 60 * 1000, // 30 minutes
  removeDoneJobsOlderThan: 7 * 24 * 60 * 60 * 1000, // 7 days
  removeFailedJobsOlderThan: 30 * 24 * 60 * 60 * 1000, // 30 days
});

Adding Jobs

// Enqueue a one-time job
queue.add("send-email", { to: "[email protected]", subject: "Hello" });

// Schedule a recurring job
queue.schedule("daily-report", { cron: "0 0 * * *" });

Defining Workers

import { defineWorker } from "plainjobs";

const worker = defineWorker(
  "send-email",
  async (job) => {
    const { to, subject } = JSON.parse(job.data);
    await sendEmail(to, subject);
  },
  {
    queue,
    onCompleted: (job) => console.log(`Job ${job.id} completed`),
    onFailed: (job, error) => console.error(`Job ${job.id} failed: ${error}`),
  }
);

worker.start();

Managing Jobs

// Count pending jobs
const pendingCount = queue.countJobs({ status: JobStatus.Pending });

// Get job types
const types = queue.getJobTypes();

// Get scheduled jobs
const scheduledJobs = queue.getScheduledJobs();

Advanced Usage

Graceful Shutdown

To ensure all jobs are processed before shutting down:

import { processAll } from "plainjobs";

process.on("SIGTERM", async () => {
  console.log("Shutting down...");
  await worker.stop(); // <-- finishes processing jobs
  queue.close();
  process.exit(0);
});

Multi-process Workers

For high-throughput scenarios, you can spawn multiple worker processes. Here's an example based on bench-worker.ts:

import { fork } from "node:child_process";
import os from "node:os";

const numCPUs = os.cpus().length;
const dbUrl = "queue.db";

for (let i = 0; i < numCPUs; i++) {
  const worker = fork("./worker.ts", [dbUrl]);
  worker.on("exit", (code) => {
    console.log(`Worker ${i} exited with code ${code}`);
  });
}

In worker.ts:

import Database from "better-sqlite3";
import { defineQueue, defineWorker, processAll } from "plainjobs";

const dbUrl = process.argv[2];
const connection = new Database(dbUrl);
const queue = defineQueue({ connection });

const worker = defineWorker(
  "bench",
  async (job) => {
    // Process job
  },
  { queue }
);

void worker.start().catch((error) => {
  console.error(error);
  process.exit(1);
});

This setup allows you to leverage multiple CPU cores for processing jobs in parallel.

For more detailed information on the API and advanced usage, please refer to the source code and tests.