Demo.quirrel.dev
The Quirrel Demo Page
Install / Use
/learn @quirrel-dev/Demo.quirrel.devREADME
Quirrel
Quirrel is the Task Queueing solution for Next.js x Vercel.
Serverless deployments simplify a lot of things, but task queueing isn't one of them. With Quirrel, creating a queue becomes as simple as this:
// /api/queues/email.js
import { Queue } from "quirrel/next"
export default Queue(
"api/queues/email",
async payload => {
await email.send( ... )
}
)
This can then easily be used from other files:
// /api/signup.js
import emailQueue from "./queues/email"
export default async (req, res) => {
await createUser(...);
await emailQueue.enqueue({
recipient: req.body.email,
subject: "How was your first day with Quirrel?",
...
}, {
delay: "1d"
})
}
In this example, the "Welcome" email is scheduled to be sent after one day. This wouldn't be possible without Quirrel!
Quirrel is currently in active development. I'll post updates on Twitter. Go check out https://quirrel.dev for a proof of concept!
Related Skills
node-connect
349.0kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
109.4kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
349.0kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
349.0kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
