n8n
n8n Tutorial for Beginners: Build Your First Automation Workflow (2026)
Step-by-step n8n tutorial for beginners. Install n8n with Docker, create your first workflow, and start automating tasks in 30 minutes.
From installation to advanced AI-powered workflows — everything you need to master n8n.
n8n (pronounced "n-eight-n") is the leading open-source workflow automation platform. Unlike SaaS tools such as Zapier or Make, n8n is self-hostable — you run it on your own server, keep your data private, and pay nothing per automation run.
| Feature | n8n | Zapier | Make |
|---|---|---|---|
| Self-hostable | Yes | No | No |
| Open source | Yes | No | No |
| Free tier | Self-hosted = free | 100 tasks/mo | 1,000 ops/mo |
| Custom code nodes | Yes | Limited | Limited |
| AI/LLM nodes | Yes (built-in) | Via Zapier AI | Via HTTP |
| Data privacy | Full control | Vendor cloud | Vendor cloud |
The fastest way to get started is Docker. Run this on any Linux VPS or local machine:
docker run -it --rm \
--name n8n \
-p 5678:5678 \
-v n8n_data:/home/node/.n8n \
docker.n8n.io/n8nio/n8n
Then open http://localhost:5678 in your browser to complete setup.
For production, use Docker Compose with a reverse proxy (Caddy or Nginx) and persistent volumes.
{{ $json.fieldName }} syntax