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

@blaizejs/plugin-queue

v1.0.0

Published

Background job processing plugin for BlaizeJS with priority scheduling and SSE monitoring

Readme

📋 @blaizejs/queue

Type-safe background job processing for BlaizeJS applications - Priority scheduling, automatic retries, and real-time SSE monitoring built for AI/ML workloads

npm version License: MIT TypeScript

🎯 Why Queue?

Long-running operations like AI inference, image processing, or email campaigns block your API. BlaizeJS Queue handles these jobs in the background with native SSE streaming for real-time progress updates - perfect for AI/ML applications that need to show progress to users.

📦 Installation

pnpm add @blaizejs/queue

🚀 Quick Start

import { createServer } from 'blaizejs';
import { createQueuePlugin } from '@blaizejs/queue';
import type { JobContext } from '@blaizejs/queue';

// 1. Define your job handlers
interface ImageData {
  prompt: string;
}

const generateImageHandler = async (ctx: JobContext<ImageData>) => {
  const { prompt } = ctx.data;
  
  ctx.progress(10, 'Starting AI model...');
  const model = await loadModel();
  
  ctx.progress(50, 'Generating image...');
  const image = await model.generate(prompt);
  
  ctx.progress(90, 'Saving result...');
  const url = await saveToStorage(image);
  
  return { url, generatedAt: Date.now() };
};

// 2. Register plugin with handlers
const server = createServer({
  port: 3000,
  plugins: [
    createQueuePlugin({
      queues: {
        default: { concurrency: 5 },
        ai: { concurrency: 2, defaultTimeout: 120000 },
      },
      handlers: {
        ai: {
          'generate-image': generateImageHandler,
        },
      },
    }),
  ],
});

// 3. Enqueue jobs from routes
// routes/images/generate.ts
export default createPostRoute()({
  handler: async (ctx) => {
    const jobId = await ctx.services.queue.add('ai', 'generate-image', {
      prompt: ctx.body.prompt,
    }, {
      priority: 8,
    });
    
    return { jobId, status: 'queued' };
  },
});

// 4. Stream progress via SSE
// routes/jobs/stream.ts
import { jobStreamHandler, jobStreamQuerySchema, jobEventsSchema } from '@blaizejs/queue';

export default createSSERoute()({
  schema: {
    query: jobStreamQuerySchema,
    events: jobEventsSchema,
  },
  handler: jobStreamHandler,
});

// Client receives: job.progress → job.completed

✨ Features

  • 🎯 Type-Safe Job Processing - Full TypeScript generics for job data, results, and handlers
  • Native SSE Streaming - Real-time progress updates using BlaizeJS's built-in Server-Sent Events
  • 📊 Priority Scheduling - Critical jobs run first with 1-10 priority levels and configurable concurrency
  • 🔄 Automatic Retry Logic - Exponential backoff with configurable limits and timeout via AbortSignal
  • 🔌 Storage Adapter Pattern - In-memory default, swappable backends for Redis/PostgreSQL
  • 📈 Built-in Observability - Prometheus metrics, HTML dashboard, and structured logging

📖 Main Exports

// Plugin Factory
createQueuePlugin(config: QueuePluginConfig): Plugin

// Route Handlers (import separately from schemas)
jobStreamHandler        // SSE: Real-time job progress
queueStatusHandler      // JSON: Queue stats and job list  
queuePrometheusHandler  // Text: Prometheus metrics
queueDashboardHandler   // HTML: Dashboard UI

// Context API (via ctx.services.queue)
add(queueName, jobType, data, options?): Promise<string>
getJob(jobId, queueName?): Promise<Job | null>
cancelJob(jobId, queueName?, reason?): Promise<boolean>
listJobs(queueName, filters?): Promise<Job[]>
subscribe(jobId, callbacks): () => void

// Key Types
interface JobContext<TData> {
  jobId: string;
  data: TData;
  logger: BlaizeLogger;
  signal: AbortSignal;
  progress(percent: number, message?: string): Promise<void>;
}

📚 Documentation

🔗 Related Packages

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

📄 License

MIT © BlaizeJS Team


Built with ❤️ by the BlaizeJS team

Background jobs that scale - from simple email queues to complex AI pipelines with real-time progress tracking.