מתי להשתמש
"n8n", "Open source automation", "Self-hosted Zapier", "AI workflows", "Code nodes".
הוראות עבודה
1. n8n = Open Source + AI-first
Best fit ל-tech-savvy teams שרוצות שליטה מלאה ו-AI workflows.
2. Deployment Options
א. n8n Cloud
- Managed.
- Pricing: $20-100+/month.
- אין DevOps.
ב. Self-hosted (Docker)
docker run -it --rm \
-p 5678:5678 \
-v ~/.n8n:/home/node/.n8n \
n8nio/n8n
- חינם.
- Hosting cost: $5-50/month (DO/AWS/Azure).
- DevOps required.
ג. Self-hosted (Kubernetes)
- Enterprise scale.
- High availability.
3. Building Blocks
- Workflow = scenario.
- Node = step.
- Connection = flow between nodes.
- Trigger = workflow starter.
- Credentials = stored auth (per-app).
4. AI-First Features (n8n's edge)
Built-in AI Nodes
- OpenAI (GPT-4, DALL-E, Whisper, Embeddings).
- Anthropic (Claude).
- Google Vertex AI.
- Hugging Face.
- Pinecone / Qdrant (vector DBs).
- LangChain nodes — RAG patterns.
AI Templates
- Document Q&A (RAG).
- Chatbot with memory.
- Content generation pipelines.
5. Code Nodes
- JavaScript (Function node).
- Python (Beta — execute Python code).
- HTTP Request for any API.
Use case: Custom data transformation
// Function node
const items = $input.all();
return items.map(item => ({
json: {
fullName: `${item.json.first} ${item.json.last}`,
email: item.json.email.toLowerCase()
}
}));
6. Custom Nodes
- npm package format.
- Build your own integration.
- Share with community.
7. n8n vs Make vs Zapier — Decision
| Question | Choose |
|---|---|
| Need AI workflows? | n8n |
| Self-host required? | n8n |
| Tech team available? | n8n / Make |
| Non-tech users? | Zapier |
| Massive integrations? | Zapier |
| Visual + cheap? | Make |
| Open source? | n8n |
8. Self-host Setup Checklist
- Server (DO Droplet $6/m / AWS EC2 t3.small).
- Domain name.
- HTTPS (Let's Encrypt).
- Reverse proxy (Caddy / Nginx).
- Backup automation.
- Monitoring (Uptime Robot).
- Updates (n8n version monthly).
9. Common Use Cases
A. AI RAG Pipeline
Trigger: New PDF in S3
→ Extract text
→ Chunk
→ Generate embeddings (OpenAI)
→ Store in Pinecone
→ Notify
B. Multi-source Data Aggregator
Schedule (daily)
→ Fetch from API 1, API 2, DB
→ Transform
→ Write to BigQuery
→ Trigger dashboard refresh
C. AI Customer Support
New ticket → Classify (Claude) → Route by category → Auto-reply if FAQ
10. Pricing 2026
Cloud
- Starter: $20/m, 5K workflow executions.
- Pro: $50/m, 15K executions.
- Enterprise: Custom.
Self-hosted
- Free unlimited usage.
- License required for "Embed" / commercial scenarios.
11. Security
- API keys in encrypted credentials.
- HTTPS mandatory for production.
- RBAC (role-based access).
- Audit logs.
- Self-hosted = your data stays with you (advantage for sensitive workflows).
12. Israel Specifics
- Hebrew workflows = OK (UI in English).
- Israeli hosting: Israeli cloud providers exist.
- GDPR compliance: easier with self-host.
13. Common Pitfalls
❌ Self-host without DevOps — eventual fall. ❌ No backups — lose all workflows. ❌ Updates skipped — security holes. ❌ No monitoring — silent failures.
14. אסיים בהמלצה.
קלט נדרש
| פריט | תיאור |
|---|---|
| Use case | AI / Data / Standard automation |
| Tech capability | DevOps available? |
| Volume | executions/month |
| Budget | $ |
| Compliance | sensitive data? |
פלט צפוי
| רכיב | תיאור |
|---|---|
| Cloud or Self-host | המלצה |
| Setup steps | מותאמים |
| Workflow design | high-level |
| Cost estimate | חודשי |
| Risks | DevOps, security |
| המלצה | פעולה אחת |
דגלים אדומים
- 🚨 Self-host ללא DevOps — disaster.
- 🚨 No backups — data loss inevitable.
- ⚠️ Production = single instance — no redundancy.
הערות חשובות
- n8n community very active — חיפוש בDiscord, GitHub.
- AI integrations updated weekly.
- Free unlimited self-host = best value if tech.
פרומפט לדוגמה
AI workflow לעיבוד מסמכים. Cloud או self-hosted?
n8n self-host על DigitalOcean. Setup steps.
RAG pipeline ב-n8n. Build it.
© 2026 Automation Expert Pro | גרסה 1.0.0