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 🙏

© 2026 – Pkg Stats / Ryan Hefner

hive-cycle

v0.2.0

Published

A modular TypeScript framework for background task processing

Downloads

254

Readme

HiveCycle Logo

HiveCycle

A modular, type-safe TypeScript framework for running background task queues. HiveCycle provides a robust backbone for processing queued jobs with concurrency control, automatic retries/requeues, and pluggable queue storage.

Features

  • Continuous Execution: Runs a worker loop that constantly polls for new tasks.
  • Type Safe: leveraging TypeScript generics to strongly type your task payloads.
  • Modular: Abstract QueueAdapter allowing you to swap the default In-Memory queue for Redis, RabbitMQ, or SQL/NoSQL databases.
  • Concurrency Control: Limit how many tasks are processed simultaneously.
  • Recurring Tasks: Built-in support for tasks that automatically requeue themselves (cron-like behavior).

Installation

npm install hive-cycle

Quick Start

Basic Usage

import { HiveCycle } from "hive-cycle";

const app = new HiveCycle();

// 1. Register a handler
app.registerHandler("email", async (task) => {
  console.log("Sending email to:", task.payload.to);
  // Perform async work here...
});

// 2. Start the engine
app.start();

// 3. Queue a task
app.enqueue("email", { to: "[email protected]" });

Type Safety

Define your task map interface to get full autocomplete and type checking for payloads.

import { HiveCycle } from "hive-cycle";

// Define your task types and their payloads
interface MyTaskMap {
  "send-email": { to: string; subject: string; body: string };
  "generate-report": { reportId: string };
}

const app = new HiveCycle<MyTaskMap>();

// ✅ Fully typed argument
app.registerHandler("send-email", async (task) => {
  // task.payload is { to: string; subject: string; body: string }
  console.log(task.payload.subject);
});

// ✅ Type-checked enqueue
app.enqueue("send-email", {
  to: "[email protected]",
  subject: "Welcome",
  body: "Hello World",
});

Advanced Usage

Recurring Tasks

You can schedule tasks to automatically requeue themselves after completion, creating a loop.

await app.enqueue(
  "cleanup-job",
  { key: "temp-files" },
  {
    requeue: true,
    requeueDelay: 5000, // Run again 5 seconds after completion
  }
);

Configuration

You can pass options to the constructor to tune performance.

const app = new HiveCycle({
  // How many tasks to process in parallel
  maxConcurrency: 5,

  // How often to check for new tasks when queue is empty (ms)
  pollingInterval: 1000,

  // Custom logger (defaults to console)
  logger: myLogger,

  // Custom Queue Adapter (defaults to MemoryQueue)
  queue: new RedisQueueAdapter(),
});

Custom Queue Adapter

To use a persistent store (like Redis), implement the QueueAdapter interface.

import { QueueAdapter, Task } from "hive-cycle";

class MyRedisQueue implements QueueAdapter {
  async enqueue(task: Task): Promise<void> {
    /* ... */
  }
  async dequeue(): Promise<Task | null> {
    /* ... */
  }
  async acknowledge(taskId: string): Promise<void> {
    /* ... */
  }
  async reject(taskId: string, error?: Error): Promise<void> {
    /* ... */
  }
}

License

MIT