superqueue
GithubTwitter

Introducing Superqueue
The next generation job queue

Serverless Tasks

Easily invoke and rate limit "serverless" tasks, such as Next.js API routes or Cloudflare Workers.

No need to provision queues

SuperQueue sets up easily and scales with your business.
import { task } from "superqueue";
const sendMail = task("sendMail", async (email: string) => {
  // Send email
});

await sendMail("hi@you.com");

Great Dashboard

Monitor your tasks with ease. Track failure rates, pending executions, throughput, and more with our intuitive dashboard.

Global Rate Limiting

No need to provision queues. SuperQueue sets up easily and scales with your business.
task("ml-task", async () => {
  // compute heavy task
}, {
  concurry: 2
});