<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: fdiwa-dev</title>
    <description>The latest articles on DEV Community by fdiwa-dev (@fdiwadev).</description>
    <link>https://dev.to/fdiwadev</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3968600%2Fadc1b9e5-ee00-4116-881a-f9d3af4ecd48.jpeg</url>
      <title>DEV Community: fdiwa-dev</title>
      <link>https://dev.to/fdiwadev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/fdiwadev"/>
    <language>en</language>
    <item>
      <title>MiniQueue: A Job Queue API That Doesn't Need Redis</title>
      <dc:creator>fdiwa-dev</dc:creator>
      <pubDate>Thu, 04 Jun 2026 16:16:58 +0000</pubDate>
      <link>https://dev.to/fdiwadev/miniqueue-a-job-queue-api-that-doesnt-need-redis-18n0</link>
      <guid>https://dev.to/fdiwadev/miniqueue-a-job-queue-api-that-doesnt-need-redis-18n0</guid>
      <description>&lt;p&gt;Every side project starts simple. Then you need a background job queue — for emails, notifications, data processing. Before you know it, you're spinning up Redis, configuring Bull/BullMQ, writing boilerplate...&lt;/p&gt;

&lt;p&gt;I got tired of this loop, so I built &lt;a href="https://miniqueue.vercel.app" rel="noopener noreferrer"&gt;MiniQueue&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is MiniQueue?
&lt;/h2&gt;

&lt;p&gt;MiniQueue is a REST API for job queues. SQLite-backed. No Redis needed.&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
bash
curl -X POST https://miniqueue.vercel.app/api/queues \
  -H "Content-Type: application/json" \
  -d '{"name":"my-queue"}'
Features
Simple REST API — Create queues, add jobs, check status with curl
Priority queues — Built-in priority system
Rate limiting — Per API key rate control
Real-time dashboard — Monitor your queues live
CLI — npx miniqueue
SDK — Ready for Node.js
Tech Stack
Built with Node.js + Express + better-sqlite3, deployed on Vercel.

Pricing
Free — Get started right away
Pro — $5/month (10K jobs/day, 10 queues)
Business — $15/month (100K jobs/day, unlimited queues)
Why not Redis?
Redis is great. But for small projects, it's often overkill. MiniQueue uses SQLite — no external service, no Docker, no configuration. Just an API key and you're ready.

Try it
API: https://miniqueue.vercel.app
GitHub: https://github.com/fdiwa-dev/miniqueue
Dashboard: https://miniqueue.vercel.app/dashboard
Docs &amp;amp; pricing: https://miniqueue.lemonsqueezy.com
Let me know what you think — what do you use for job queues in your projects?
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>api</category>
      <category>backend</category>
      <category>showdev</category>
      <category>sideprojects</category>
    </item>
  </channel>
</rss>
