n8n vs Windmill in 2026: Visual Open-Source vs Code-First Automation
n8n was founded in Berlin in 2019 and ships under a fair-code Sustainable Use License with a node-based visual canvas and 400+ built-in integrations. Windmill was founded in 2022, ships under AGPLv3, and ships a code-first runtime that executes TypeScript, Python, Go, Bash, SQL, and GraphQL with auto-generated UIs. Both can be self-hosted on a single Docker host; their target users are different.
The Bottom Line: n8n fits operations and growth teams who want a visual canvas plus a large connector library; Windmill fits backend engineering teams who want to run typed scripts as workflows with full Git-based versioning.
n8n and Windmill both compete in the self-hostable workflow automation space, both run on a single Docker host, and both have free open-source editions. The marketing collateral makes them sound similar; in practice they pull in opposite directions. n8n is a visual workflow builder with a large connector library and a JavaScript code node. Windmill is a code-first runtime that treats TypeScript, Python, and Go scripts as the primary unit and generates UIs for them. The right pick for a given team usually drops out of one question: who writes the workflow definition?
This guide compares the two across pricing, architecture, language and DSL, integrations, observability, and team fit. Sources include the n8n pricing page, the Windmill pricing page, and the projects' GitHub repositories (n8n, Windmill).
At-a-glance comparison
| Criterion | n8n | Windmill |
|---|---|---|
| Founded | 2019 (Berlin) | 2022 (Paris / NYC) |
| License | Sustainable Use License (fair-code) | AGPLv3 |
| Self-host | Free, unlimited executions | Free, generous compute on community |
| Cloud entry | Starter $24/mo (2,500 executions) | Team $10/user/mo |
| Cloud higher tier | Pro $60/mo (10,000 executions); Enterprise custom | Enterprise custom (per-worker pricing) |
| Workflow definition | Visual node graph + JavaScript / Python code nodes | TypeScript, Python, Go, Bash, SQL, GraphQL scripts |
| UI generation | Hand-built per node | Auto-generated forms from script signatures |
| Integrations | 400+ pre-built nodes | 100+ pre-built integrations + raw HTTP |
| Primary persona | Ops, growth, support, automation citizen developer | Backend / platform engineer |
| Strongest fit | SaaS glue between 5-50 connectors | Internal tools, scripts as services, scheduled jobs |
Pricing
n8n self-hosted Community Edition is free with unlimited executions; the practical floor is the cost of a small VPS, around $3-7 per month. n8n Cloud Starter starts at $24 per month for 2,500 monthly executions; Pro at $60 per month covers 10,000; Business and Enterprise are custom-priced. The fair-code Sustainable Use License permits commercial internal use but restricts hosting n8n as a service to others.
Windmill self-hosted Community Edition is free under AGPLv3 with generous compute. Windmill Cloud Team starts at roughly $10 per user per month with included compute credits; Enterprise is per-worker. The AGPL license is stricter than n8n's fair-code: any modifications served over a network must be open-sourced.
For a 5-engineer team running internal automations on their own infrastructure, both products land at the cost of a small server. For a team picking a managed cloud, the per-execution model (n8n) and per-user model (Windmill) cross over at different volumes; the Pinggy comparison flags Windmill cloud as cheaper above ~10K executions per month if user count is small.
Architecture
n8n runs as a single Node.js process plus an optional queue mode (Redis + Bull for parallel execution). State lives in PostgreSQL, MySQL, or SQLite. Each workflow is a JSON document of connected nodes; execution walks the graph, evaluating each node and passing data forward.
Windmill runs as a Rust monolith plus a worker pool. State lives in PostgreSQL. Each script is a typed function (TypeScript, Python, Go, Bash, SQL, GraphQL); flows compose scripts into DAGs. Auto-generated UIs introspect the function signature and produce a form, which is the feature most teams cite as the differentiator.
The runtime difference matters at scale. Windmill's worker pool isolates each script execution and benchmarks the project publishes show sub-100ms cold-start overhead for hot workers. n8n's queue mode parallelises across workers but each node still runs in a Node.js context.
Editor's Note: Across 3 client deployments in 2025-26, we picked Windmill for a 14-engineer fintech ops team that wanted typed Python scripts under Git review, and n8n for a 5-person growth team at a B2B SaaS vendor who needed Slack -> HubSpot -> Notion glue without writing code. The Windmill rollout took 9 days end-to-end including SSO; the n8n rollout took 3 days because we copied 6 community templates and changed credentials. Caveat: small sample, both clients UK-based; Windmill's curve is steeper but the artifact is reusable in CI. — Rafal Fila, ShadowGen
Language and DSL
n8n's primary surface is its visual node graph. The Code node supports JavaScript or Python for cases where a built-in node doesn't cover the logic. Most workflows are configured rather than written.
Windmill's primary surface is the script. TypeScript, Python, Go, Bash, SQL, and GraphQL are first-class. Scripts have typed inputs and outputs; flows wire scripts into DAGs visually but the unit of work is code in a file. Git-based versioning is built in: the Windmill GitHub sync treats workspaces as repos.
The contrast: an n8n workflow is rarely reviewed in a pull request; a Windmill script almost always is.
Integrations
n8n ships 400+ pre-built integration nodes covering the SaaS catalogue most ops teams care about: Slack, Notion, HubSpot, Stripe, Shopify, Airtable, Google Workspace, Microsoft 365, the major databases, and a long tail of niche tools. The HTTP Request node covers anything not yet wrapped.
Windmill ships 100+ integrations and a Hub plus generic HTTP. The integration catalogue is smaller and closer to developer-leaning targets (Stripe, Slack, Linear, Postgres, Resend). For SaaS-heavy ops glue, n8n is the bigger library; for engineering-focused script work, Windmill is sufficient because raw HTTP plus typed scripts handle long-tail cases easily.
Observability
n8n ships per-execution logs, a workflow-history view, and basic error workflows that fire on failure. Self-hosted users typically wire n8n logs to their existing log stack (Loki, Datadog, ELK).
Windmill ships per-run logs, per-script metrics, and a built-in resource usage view. The platform exposes Prometheus metrics and OpenTelemetry traces directly. For an engineering team that already runs Grafana, the Windmill integration is closer to native.
Neither product replaces a serious APM; both expose enough surface to debug a single failed run.
Decision flow
flowchart TD
A[New workflow platform] --> B{Workflow author<br/>writes code?}
B -- No, click + configure --> C[n8n]
B -- Yes, TS / Python / Go --> D{Need 100+<br/>SaaS connectors<br/>out of the box?}
D -- Yes --> C
D -- No, raw HTTP fine --> E[Windmill]
C --> F{Self-host or<br/>managed cloud?}
F -- Self-host --> G[n8n Community<br/>Docker]
F -- Cloud --> H[n8n Starter $24/mo]
E --> I{Strict OSS / AGPL<br/>requirement?}
I -- Yes --> J[Windmill self-host]
I -- No --> K[Windmill Cloud<br/>$10/user/mo]
When to choose n8n
Choose n8n when the workflow author is an ops, growth, or support operator rather than an engineer; when the integration catalogue (Slack, Notion, HubSpot, Stripe, etc.) covers most of the workload; when fast template reuse matters; and when the team values a visual canvas over Git-reviewable scripts. The 400+ pre-built nodes plus the Code node cover the long tail of SaaS glue work.
When to choose Windmill
Choose Windmill when the workflow author is an engineer who wants to commit typed TypeScript, Python, or Go to a Git-tracked workspace; when auto-generated UIs over scripts are a primary value (internal tools, on-call playbooks, ops dashboards); when AGPL is acceptable or preferred; and when the platform doubles as a script runner / cron / queue across the engineering team. Windmill behaves more like a backend platform than a workflow tool.
Self-hosting reality
Both projects publish a "single Docker command" install path; both need more than that for production. For n8n, the production checklist is: separate the Postgres instance from the n8n container, switch to queue mode with Redis once parallelism passes a few hundred concurrent executions, configure encrypted credentials with an external KMS, and put the editor behind SSO. The n8n self-hosting docs walk through each step, but small teams routinely skip the queue-mode and SSO pieces and run into them at 6-month mark.
Windmill's production checklist is similar: external Postgres, multiple worker pods, OAuth SSO (the Windmill OSS auth docs cover SAML on the Enterprise edition), and a backup strategy for workspace state. Worker resource sizing matters more on Windmill because each script runs in its own runtime; teams often end up with one worker pool per language to manage cold-start times.
For a 5-engineer self-hosted deployment, both products land at roughly half a day of platform-team setup and another half-day per quarter of maintenance. For 50+ users, the maintenance bill rises but stays well below a managed-cloud equivalent on either platform.
AI and LLM integrations
Both products added LLM nodes and credentials in 2024-25. n8n ships dedicated nodes for OpenAI, Anthropic, Cohere, Mistral, and a generic LangChain-compatible node, plus an AI Agents framework for tool-using agents. The visual canvas works well for chained prompt + retrieval steps where the operator wants to inspect each intermediate output.
Windmill's approach is to treat the LLM call as a script. The Windmill Hub ships starter scripts for the major providers, and engineers commit prompt templates and tool definitions as TypeScript or Python. Vector store integrations (pgvector, Pinecone, Qdrant) are handled the same way as any other integration.
For ops teams building "LLM glue" (Slack -> classify -> route -> notify), n8n is the lower-friction starting point. For engineering teams building agent backbones with structured outputs and pgvector retrieval, Windmill keeps the artifact in code where it belongs.
Bottom line
n8n and Windmill solve adjacent problems for different audiences. n8n optimises for the operator clicking nodes together; Windmill optimises for the engineer committing scripts. The fastest filter is to ask who in the team will own the workflow definition six months after launch; the answer almost always picks one of the two.
Tools Mentioned
Activepieces
No-code workflow automation with self-hosting and AI-powered features
Workflow AutomationAutomatisch
Open-source Zapier alternative
Workflow AutomationBardeen
AI-powered browser automation via Chrome extension
Workflow AutomationCalendly
Scheduling automation platform for booking meetings without email back-and-forth, with CRM integrations and routing forms for lead qualification.
Workflow AutomationRelated Guides
Migrating 23 Make Scenarios to Self-Hosted n8n: a 3-Week Breakdown
Anonymized retrospective of a DTC ecommerce brand migrating 23 Make scenarios to a self-hosted n8n instance over three weeks. Tooling cost dropped from $348/month on Make Teams to roughly $12/month on a Hetzner VPS, but credential and webhook recreation consumed about 40% of total project time.
Trigger.dev vs Inngest 2026: OSS Durable Runners Compared
Trigger.dev (2022, London) is a fully Apache 2.0 durable runner with task-based authoring, machine-size selection, and first-class self-host. Inngest (2021, San Francisco) is a developer-first event-driven step platform with an open-source dev server and a managed cloud (50K step runs/month free, $20/month Hobby). This 2026 comparison covers license, programming model, pricing, observability, and self-host options.
Inngest vs Temporal 2026: Durable Functions vs Durable Workflows
Inngest (2021, San Francisco) is a developer-first durable functions platform with TypeScript and Python SDKs, 50,000 step runs/month free, and Hobby pricing from $20/month. Temporal (2019) is the heavyweight durable workflow engine with seven-language SDK coverage, Cassandra-backed scale, and Cloud pricing from roughly $200/month at low volume or $2.5-4.5K/month self-host. This 2026 comparison covers programming model, pricing, scale ceiling, and operational footprint.
Related Rankings
Best Durable Workflow Engines for Production in 2026
A ranked list of the best durable workflow engines for production deployments in 2026. Durable workflow engines persist execution state to a database so that long-running workflows survive process restarts, deployments, and infrastructure failures. The ranking covers Temporal, Prefect, Apache Airflow, Camunda, Windmill, and n8n. Tools were evaluated on production reliability, developer experience, scalability, open-source health, and documentation quality. The shortlist intentionally mixes code-first engines (Temporal, Prefect, Airflow) with hybrid visual platforms (Camunda, Windmill, n8n) to reflect how production teams actually choose workflow engines in 2026.
Best No-Code Automation Platforms in 2026
A ranked list of no-code automation platforms in 2026. The ranking covers visual workflow builders that allow non-engineering teams to connect SaaS apps, route data, and add conditional logic without writing code. Entries cover proprietary cloud platforms (Zapier, Make, Pipedream, IFTTT) and open-source visual builders (n8n, Activepieces). Scoring reflects integration breadth, pricing accessibility, visual editor ease, reliability and error handling, and self-hosting availability.
Common Questions
What are the best automation tools for solo founders in 2026?
Solo founders in 2026 get the most value from Zapier or Make (broad SaaS glue), n8n self-hosted (free, unlimited runs), Pipedream (generous free tier with code steps), Notion automations, and Lindy or Relay.app (AI agents for inbox and meetings). Free tiers cover most pre-revenue workflows.
What are the best automation tools for finance and AP teams in 2026?
Finance and AP teams in 2026 most often combine UiPath or Power Automate (RPA for legacy ERPs and invoice extraction), Workato (audit-friendly iPaaS), and Zapier or Make (lightweight task automation) alongside built-in tools such as NetSuite SuiteFlow. Selection depends on ERP, audit requirements, and invoice volume.
What are the best AI-native automation tools in 2026?
The leading AI-native automation tools in 2026 are Lindy and Relevance AI (agent builders), Gumloop (visual agent workflows), Relay.app (human-in-the-loop AI workflows), Bardeen (browser AI agents), and CrewAI (multi-agent code framework). "AI-native" here means the LLM is the orchestrator, not a step inside a traditional workflow.
What are the best workflow automation tools for technical writers in 2026?
Technical writers in 2026 typically combine Mintlify or ReadMe (docs-as-code platforms), n8n or Zapier (publishing automation), GitHub Actions (CI for docs), and Notion or Coda (drafting and review). The strongest setups treat docs as code with an automation layer for screenshots, link checks, and changelog publishing.