edukacyjna · 11 min czytania ·

n8n — What Is It? Open-Source Alternative to Zapier and Make [2026]

n8n — a free workflow automation tool. How it works, what self-hosting costs, and when it is better than Zapier.

n8n — What Is It?

Business process automation in 2026 is not a luxury — it is a standard. Companies that still manually re-enter data from emails into CRM systems, copy information between spreadsheets, and send repetitive messages are losing hundreds of hours of work per month. Tools like Zapier and Make have addressed this problem for years — but they have their limitations: closed code, rising costs at scale, and vendor dependency.

This is where n8n comes in — an open-source workflow automation platform that by 2026 has become a serious alternative to commercial giants. This article explains exactly what n8n is, how it works, what it costs, and when it is worth choosing over Zapier or Make.


n8n in One Sentence

n8n (pronounced “n-eight-n”) is an open-source, self-hostable workflow automation tool that connects applications and services via a visual editor — without requiring you to write code.

The name comes from the word “nodemation” (node + automation). The project was founded in Berlin in 2019 by Jan Oberhauser. By 2026, n8n has over 50,000 stars on GitHub, 400+ built-in integrations, and an active community with thousands of ready-made workflow templates.

The key difference from the competition: you can host n8n on your own server, maintain full control over your data, and pay nothing per execution. This changes the economics of automation — particularly at high scale.


How Does n8n Work? (Visual Workflow Builder)

n8n is built around the concept of a workflow — a sequence of steps (nodes) that execute automatically when a trigger is fired.

Anatomy of a Workflow in n8n

  1. Trigger — the event that starts the workflow:

    • Webhook (HTTP request)
    • Cron (scheduled timer)
    • New email in inbox
    • New row in Google Sheets
    • CRM event (new lead, status change)
  2. Nodes — individual actions:

    • Fetch data from an API
    • Transform data (filtering, mapping, merging)
    • Send a message (email, Slack, SMS)
    • Write to a database
    • Call an AI model (OpenAI, Anthropic)
  3. Connections — lines linking nodes, defining the data flow

  4. Execution — every workflow run is a separate “execution” with a full log

Visual Builder — No Code, But With Code Option

The n8n interface is a canvas where you drag and connect nodes. Each node has a configuration panel — you fill in fields, select options from lists, and map data from previous steps.

But n8n is not just no-code. When you need more control, you have:

  • Code Node — write JavaScript or Python directly in the workflow
  • Function Node — transform data with any code
  • HTTP Request Node — call any API with full control over headers and body
  • Execute Command Node — run a shell command on the server

This makes n8n a tool for both non-technical users (no-code) and developers (code-first with visualisation).

AI in n8n — Native Integrations

In 2026, n8n offers dedicated nodes for working with AI:

  • OpenAI Node — GPT-4, Whisper, DALL-E
  • Anthropic Node — Claude
  • Google Vertex AI Node — Gemini
  • LangChain integration — building AI agents in workflows
  • Vector Store Nodes — Pinecone, Qdrant, Weaviate
  • AI Agent Node — an autonomous agent with tools and memory

This allows you to build advanced AI pipelines without writing code — for example, an automated assistant that reads emails, classifies them, responds to simple queries, and escalates complex ones to a human.


n8n vs Zapier vs Make — Comparison Table

Criterionn8nZapierMake (Integromat)
Licence modelOpen-source (fair-code)Closed SaaSClosed SaaS
Self-hostingYes (Docker, K8s)NoNo
Free planSelf-hosted: no limits100 tasks/month (5 Zaps)1,000 ops/month
Cloud priceFrom €20/monthFrom $29.99/monthFrom $10.59/month
Number of integrations400+7,000+2,000+
Custom codeJavaScript, Python nativelyLimited (Code by Zapier)Limited (Custom modules)
AI nodesNative (OpenAI, Claude, LangChain)Yes (ChatGPT, DALL-E)Yes (OpenAI, basic)
Branching / IF-ELSEFull (merge, switch, router)Paths (limited)Router (good)
Error handlingAdvanced (retry, fallback, error workflow)Basic (retry)Good (error handler, break)
WebhookNative (unlimited)Yes (premium)Yes
PerformanceDepends on server (no limit)Task limit/monthOperation limit/month
GDPR / dataFull control (self-host in EU)Data at Zapier (US)Data at Make (EU — Czech Republic)
Community50k+ GitHub stars, forumLarge (commercial)Medium
Learning curveMedium (requires setup)Low (intuitive)Low–medium

What Does n8n Cost? (Cloud vs Self-Hosted)

n8n Cloud (hosted by n8n GmbH)

PlanPrice/monthWorkflowsExecutionsUsers
Starter€205 active2,5001
Pro€5015 active10,0003
EnterpriseCustomUnlimitedUnlimitedUnlimited

n8n Self-Hosted (Your Own Server)

ElementCostNotes
n8n licenceFree (fair-code licence)Free use for companies, resale prohibited
VPS server$20–100/monthDigitalOcean, Hetzner, OVH — min. 2 vCPU, 4 GB RAM
Database$0–40/monthPostgreSQL (managed or self-hosted)
SSL + domain$0–20/yearLet’s Encrypt (free) + domain
Backup$10–30/monthAutomated DB + file backup
DevOps / maintenance$100–500/monthUpdates, monitoring, troubleshooting

Total self-hosting cost: $130–670/month — depending on scale and whether you have in-house DevOps.

When Does Self-Hosting Pay Off?

  • Above 10,000 executions per month (Zapier would cost $100+/month)
  • When processing sensitive data (GDPR — full control over storage)
  • When you need unlimited workflows
  • When you have DevOps in-house or a technical partner

When Is n8n Cloud Better?

  • Small team without DevOps
  • Fewer than 10,000 executions/month
  • You need a fast start without server configuration
  • You do not want to manage updates and backups

When Is n8n Better Than Zapier/Make?

1. You Have Many Executions and Want to Save

Zapier at 50,000 tasks/month costs over $500. n8n self-hosted at the same volume costs the server — $30–100. At high scale, the savings run into thousands of dollars per month.

2. You Need Full Data Control

For companies in the medical, financial, or legal sectors — processing data on your own EU server is not an option, it is a requirement. n8n self-hosted gives you 100% control over where data is stored and processed.

3. You Are Building Complex Workflows With Business Logic

n8n offers full branching (IF/ELSE/Switch), merge nodes, sub-workflows, error handling with fallbacks, and loops. When your workflow has 50+ steps with multiple decision paths — n8n gives more control than Zapier.

4. You Are Integrating AI Into Processes

Native nodes for OpenAI, Anthropic, LangChain, and vector stores make n8n the ideal platform for building AI pipelines — from a simple “summarise this email” to an advanced agent with memory and tools.

5. You Need Custom Integrations

When the application you want to integrate does not have a ready connector in Zapier — you have to wait for support. In n8n you write your own node or use HTTP Request with full API control.

6. You Want to Version and Test Workflows

n8n allows exporting workflows as JSON, versioning in Git, environment variables, and separate dev/staging/prod instances. This is a software engineering approach to automation — unavailable in SaaS tools.


Example Workflows in n8n

Workflow 1: Automated Client Onboarding

Trigger: New contact in CRM (HubSpot/Pipedrive)

Steps:

  1. Fetch client data from CRM
  2. Generate a personalised welcome email (OpenAI)
  3. Send email via SendGrid
  4. Create a client folder in Google Drive
  5. Add onboarding tasks in Asana/ClickUp
  6. Send a notification to the account manager on Slack

Saving: 20 minutes per new client × 30 clients/month = 10 hours/month

Workflow 2: Business Monitoring and Alerts

Trigger: Cron — every hour

Steps:

  1. Fetch sales data from the store API
  2. Compare against the daily target (Google Sheets)
  3. IF sales < 80% of target → send alert to Slack
  4. IF sales > 120% of target → send congratulations to the team
  5. Save data to dashboard (Grafana/Metabase)

Value: Immediate response to anomalies instead of discovering a problem the next day

Workflow 3: Automated RFQ Handling

Trigger: New email tagged “quote” (Gmail/Outlook)

Steps:

  1. Parse the email content (AI — category classification)
  2. Extract key information (company, budget, deadline)
  3. Find similar completed projects in the database (vector search)
  4. Generate a reply draft (Claude)
  5. Create a lead in CRM with tag and priority
  6. Assign to a salesperson (round-robin)
  7. Send a Slack notification with a summary

Saving: 15–30 minutes per enquiry × 50 enquiries/month = 12–25 hours/month

Workflow 4: AI Weekly Report

Trigger: Cron — Friday 4pm

Steps:

  1. Fetch metrics from Google Analytics, CRM, ad platforms
  2. Build a week-over-week comparison table
  3. Generate a text summary (GPT-4)
  4. Format as HTML email
  5. Send to management

Value: Management receives a clear report without involving an analyst

Workflow 5: Data Synchronisation Between Systems

Trigger: Webhook from ERP system

Steps:

  1. Receive new order data
  2. Create a client in the invoicing system
  3. Issue a pro-forma invoice
  4. Update stock in WMS
  5. Notify the warehouse (email + Slack)
  6. Update status in CRM

Saving: Elimination of manual data re-entry — zero errors, zero delays


How to Get Started With n8n? (Installation + First Flow)

Option 1: n8n Cloud (Fastest)

  1. Go to n8n.io and create an account
  2. Choose the Starter plan (€20/month) or trial
  3. Open the workflow editor — ready in 2 minutes

Requirements: a server with Docker, min. 2 vCPU, 4 GB RAM

docker run -d \
  --name n8n \
  -p 5678:5678 \
  -v n8n_data:/home/node/.n8n \
  -e N8N_BASIC_AUTH_ACTIVE=true \
  -e N8N_BASIC_AUTH_USER=admin \
  -e N8N_BASIC_AUTH_PASSWORD=your-password \
  n8nio/n8n

After starting, open http://your-server:5678 — you will see the workflow editor.

Option 3: Docker Compose with PostgreSQL (Production)

For a stable production environment, we recommend Docker Compose with a separate PostgreSQL database:

version: '3.8'
services:
  n8n:
    image: n8nio/n8n
    ports:
      - '5678:5678'
    environment:
      - DB_TYPE=postgresdb
      - DB_POSTGRESDB_HOST=postgres
      - DB_POSTGRESDB_DATABASE=n8n
      - DB_POSTGRESDB_USER=n8n
      - DB_POSTGRESDB_PASSWORD=secure-password
    volumes:
      - n8n_data:/home/node/.n8n
    depends_on:
      - postgres
  postgres:
    image: postgres:16
    environment:
      - POSTGRES_DB=n8n
      - POSTGRES_USER=n8n
      - POSTGRES_PASSWORD=secure-password
    volumes:
      - postgres_data:/var/lib/postgresql/data
volumes:
  n8n_data:
  postgres_data:

First Workflow — Step by Step

  1. Click “New Workflow”
  2. Add trigger: Schedule Trigger (every 5 minutes)
  3. Add node: HTTP Request — GET to a weather API
  4. Add node: IF — is temperature > 30°C?
  5. Add node: Slack — send message “Hot day! Remember to keep the team hydrated”
  6. Click “Execute Workflow” — test
  7. Activate workflow (toggle in the top right corner)

Congratulations — you have your first working workflow in n8n. From this point you can build increasingly complex automations.


FAQ

1. Is n8n Really Free?

n8n is open-source under a “fair-code” licence (Sustainable Use Licence). This means: you can self-host n8n for free for your own company, with no limits on workflows or executions. You cannot, however, resell n8n as a service (e.g. offer “n8n as a Service” to clients). For that you need a commercial licence.

2. Is n8n Safe for Company Data?

Yes — with self-hosting, data never leaves your server. n8n does not send telemetry about your data to anyone. You can host in the EU on GDPR-compliant servers, encrypt databases, and apply full backup policies. This is safer than sending data to US-based SaaS platforms.

3. Do I Need a Developer to Use n8n?

For simple workflows (5–15 nodes, standard integrations) — no. The no-code interface is intuitive and well-documented. For complex scenarios (custom nodes, error handling, API integrations without ready connectors) — a technical person is useful. For self-hosting and maintenance — you need DevOps or a technical partner.

4. How Does n8n Handle Large Numbers of Executions?

n8n in queue mode (with Redis and multiple workers) handles tens of thousands of executions per hour. With proper configuration (PostgreSQL, dedicated workers, monitoring) n8n scales horizontally. Companies with 100,000+ executions/month use n8n in production without problems.

5. Can I Migrate From Zapier/Make to n8n?

Yes, though there is no automatic importer. The migration process requires rebuilding workflows manually in n8n — but 80% of integrations have equivalents. The n8n community publishes migration guides. A typical migration of 20 Zaps from Zapier to n8n takes 2–5 working days. It is worth it — because the one-off migration cost pays back in 2–4 months of subscription savings.


Want to Implement n8n in Your Company?

n8n is a powerful tool, but the tool alone is not enough. Key questions before implementation:

  • Which processes in your company are worth automating first?
  • Is self-hosting or cloud better?
  • What integrations will be needed?
  • Who will maintain and develop workflows?

Process Intelligence Audit (AiP) will answer these questions. We will map your processes, identify automation candidates, calculate ROI, and propose an architecture — including a recommendation of whether n8n, Make, or a custom solution best fits your scale.

👉 Order the AiP Audit and find out how much you can save through automation


Article prepared by the QA10 team — we implement business process automation for SMEs with measurable ROI since 2024.

NEWSLETTER // MONTHLY AI DIGEST FOR BUSINESS

What next // you read the article · time to talk?

Do these topics apply to your company?

30 minutes with the CEO. No sales rep. We will check together whether what you read applies to you.

Book a call with the CEO Check ROI calculator
Paleta poleceń
  • Strona główna/
  • Kontakt/kontakt/
  • Kalkulator ROI/kalkulator/
  • Audyt AiP/audyt-aip/
  • QDeployment/qdeployment/
  • QCare/qcare/
  • Pełen proces/proces/
  • MenToR — AI dla uczelni/mentor/
  • Engineering Lab/engineering-lab/
  • Venture Projects/projekty/
  • O nas/o-nas/
  • Case Studies/case-studies/
  • Baza wiedzy/baza-wiedzy/
  • Umów diagnostykę 30 min/kontakt/#booking
  • Oblicz ROI/kalkulator/
  • Kalkulator Dig.IT/kalkulator/
  • dlaNGO MVP demo/projekty/#dlango-mvp
  • LSO:ATOM/o-nas/#lso-atom
  • FAQ /projekty//projekty/#faq
CtrlK|Esc|Enter19