Most-installed automation tool by wide margin. Downloads dwarf star count, suggesting deep practical adoption over hype.
Inngest
activeServerless workflow orchestration deeply integrated with the Vercel/Next.js ecosystem. 5K stars but 499K npm weekly downloads — highest in the entire automation category by 2x. Event-driven, step.ai.infer() API offloads LLM requests to Inngest infrastructure.

Where it wins
499K npm weekly downloads — highest in automation category by 2x
Serverless-native, deeply integrated with Vercel/Next.js ecosystem
step.ai.infer() API offloads LLM requests to Inngest infrastructure
Consistent HN presence (5 posts above threshold, 165pt peak)
Independent confirmation as 'better default for typical Next.js SaaS' (HashBuilds)
Where to be skeptical
Cannot self-host (ELv2 license) — limits appeal for on-prem/control-focused teams
Only 5K stars — low visibility relative to actual adoption
No MCP bridge
Hosted-only model limits appeal outside Vercel ecosystem
Editorial verdict
Default choice for Next.js/Vercel teams needing serverless workflow orchestration with AI inference built in. 499K npm downloads/wk (highest in automation by 2x) proves deep practical adoption despite modest star count. Cannot self-host (ELv2 license) — limits appeal for on-prem teams.
Source
Related

Trigger.dev
92Background jobs platform for TypeScript developers. 14K stars, 258K npm weekly downloads (2nd in automation category). Highest HN peak in the category (745pts). Pivoting from 'open-source Zapier' to fully-managed AI agent workflows.

Windmill
92Code-first workflow platform — turn Python/TypeScript/Go/Bash scripts into workflows with auto-generated UIs. 16K stars, 148 contributors, 420 commits/30d, extreme release velocity (v1.661.0). 51K npm weekly downloads.

Pipedream
90Developer API platform with the largest MCP API surface — 3,000+ apps, 10,000+ pre-built tools via single MCP connection. 11K stars, 251 contributors. 10K free invocations/month. Secure credential handling (encrypted at rest, never exposed to AI models).

n8n
88179,860 GitHub stars — largest OSS repo in adjacent workflow-automation space by 2×. 3,000+ enterprise customers, ~200,000 active users, $60M Series B. 1,100+ ready-to-use integrations, native AI Agent node, MCP client/server support. Best for orchestrating SaaS integrations and processes with AI nodes — not for building agent systems in code.
Public evidence
'For typical Next.js SaaS: Inngest is the better default; for data-heavy operations exceeding serverless limits: Trigger.dev.' Clear use-case partitioning.
Consistent HN presence (5 posts above 10pts) shows sustained community interest, not just launch hype.
Raw GitHub source
GitHub README peek
Constrained peek so you can sanity-check the source material without leaving the site.
Inngest's durable functions replace queues, state management, and scheduling to enable any developer to write reliable step functions faster without touching infrastructure.
- Write durable functions using any of our language SDKs
- Run the Inngest Dev Server for a complete local development experience, with production parity.
- Deploy your functions to your own infrastructure
- Sync your application's functions with the Inngest Platform or a self-hosted Inngest server.
- Inngest invokes your functions securely via HTTPS whenever triggering events are received.
An example durable function
Inngest Functions enable developers to run reliable background logic, from background jobs to complex workflows. An Inngest Function is composed of three key parts that provide robust support for retrying, scheduling, and coordinating complex sequences of operations:
- Triggers - Events, Cron schedules or webhook events that trigger the function.
- Flow Control - Configure how the function runs are enqueued and executed including concurrency, throttling, debouncing, rate limiting, and prioritization.
- Steps - Steps are fundamental building blocks of Inngest, turning your Inngest Functions into reliable workflows that can run for months and recover from failures.
Here is an example function that limits concurrency for each unique user id and performs two steps that will be retried on error:
export default inngest.createFunction(
{
id: "import-product-images",
concurrency: {
key: "event.data.userId",
limit: 10
}
},
{ event: "shop/product.imported" },
async ({ event, step }) => {
// Here goes the business logic
// By wrapping code in steps, each will be retried automatically on failure
const s3Urls = await step.run("copy-images-to-s3", async () => {
return copyAllImagesToS3(event.data.imageURLs);
});
// You can include numerous steps in your function
await step.run("resize-images", async () => {
await resizer.bulk({ urls: s3Urls, quality: 0.9, maxWidth: 1024 });
})
};
);
// Elsewhere in your code (e.g. in your API endpoint):
await inngest.send({
name: "shop/product.imported",
data: {
userId: "01J8G44701QYGE0DH65PZM8DPM",
imageURLs: [
"https://useruploads.acme.com/q2345678/1094.jpg",
"https://useruploads.acme.com/q2345678/1095.jpg"
],
},
});
Learn more
- Getting started
- SDKs
- Project Architecture
- Self-hosting
- Community
Getting started
Run the Inngest Dev Server using our CLI:
npx inngest-cli@latest dev
Open the Inngest Dev Server dashboard at http://localhost:8288:

Follow our Next.js, Node.js or Python quick start guides.
SDKs
- TypeScript / JavaScript (inngest-js) - Reference
- Python (inngest-py) - Reference
- Go (inngestgo) - Reference
- Kotlin / Java (inngest-kt)
Project Architecture
To understand how self-hosting works, it's valuable to understand the architecture and system components at a high level. We'll take a look at a simplified architecture diagram and walk through the system.
<br /> <p align="center"> <img src="https://raw.githubusercontent.com/inngest/inngest/main/.github/assets/architecture-2024-09-23.png" alt="System Architecture" width="660" /> </p>- Event API - Receives events from SDKs via HTTP requests. Authenticates client requests via Event Keys. The Event API publishes event payloads to an internal event stream.
- Event stream - Acts as buffer between the Event API and the Runner.
- Runner - Consumes incoming events and performs several actions:
- Scheduling of new “function runs” (aka jobs) given the event type, creating initial run state in the State store database. Runs are added to queues given the function's flow control configuration.
- Resume functions paused via
waitForEventwith matching expressions. - Cancels running functions with matching
cancelOnexpressions - Writes ingested events to a database for historical record and future replay.
- Queue - A multi-tenant aware, multi-tier queue designed for fairness and various flow control methods (concurrency, throttling, prioritization, debouncing, rate limiting) and batching.
- Executor - Responsible for executing functions, from initial execution, step execution, writing incremental function run state to the State store, and retries after failures.
- State store (database) - Persists data for pending and ongoing function runs. Data includes initial triggering event(s), step output and step errors.
- Database - Persists system data and history including Apps, Functions, Events, Function run results.
- API - GraphQL and REST APIs for programmatic access and management of system resources.
- Dashboard UI - The UI to manage apps, functions and view function run history.
Community
- Join our Discord community for support, to give us feedback, or chat with us.
- Post a question or idea to our GitHub discussion board
- Read the documentation
- Explore our public roadmap
- Follow us on Twitter
- Join our mailing list for release notes and project updates
Contributing
We embrace contributions in many forms, including documentation, typos, bug reports or fixes. Check out our contributing guide to get started. Each of our open source SDKs are open to contributions as well.
Additionally, Inngest's website documentation is available for contribution in the inngest/website repo.
Self-hosting
Self-hosting the Inngest server is possible and easy to get started with. Learn more about self-hosting Inngest in our docs guide.
License
The Inngest server and CLI are available under the Server Side Public License and delayed open source publication (DOSP) under Apache 2.0. View the license here.
All Inngest SDKs are all available under the Apache 2.0 license.
