90 lines
3.2 KiB
Markdown
90 lines
3.2 KiB
Markdown
---
|
|
title: n8n
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, workflow-automation, app-marathon-batch-a]
|
|
confidence: high
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Workflow+Automation&app=n8n]
|
|
---
|
|
|
|
# ⚙️ n8n
|
|
|
|
> **Workflow automation fair-source** — automatisez vos tâches entre 400+ apps avec un éditeur visuel node-based, IA-friendly et auto-hébergeable.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [n8n.io](https://n8n.io) |
|
|
| **GitHub** | [n8n-io/n8n](https://github.com/n8n-io/n8n) |
|
|
| **License** | Sustainable Use License (fair-code) |
|
|
| **Langage** | TypeScript |
|
|
| **Étoiles GitHub** | 50k ⭐ |
|
|
| **Catégorie** | [[cat-workflow-automation|Workflow Automation]] |
|
|
|
|
## 📝 Description
|
|
|
|
**n8n** (prononcé "nodemation") est une plateforme d'**automatisation de workflows** open source (fair-code) qui se positionne comme l'alternative auto-hébergeable à Zapier et Make. Vous construisez visuellement des workflows en connectant des "nodes" (HTTP, bases de données, Slack, Notion, GitHub, OpenAI, Google Sheets, etc. — 400+ intégrations natives). Le modèle de licence "Sustainable Use License" autorise le self-host gratuit mais interdit de revendre n8n en tant que service concurrent. Différence avec **Zapier** : n8n est auto-hébergeable, illimité en exécution, et permet de coder ses propres nodes en JS. Pour qui: développeurs, équipes ops, marketers qui veulent une alternative puissante et privée à Zapier, avec contrôle total des données.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose (recommandé)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
n8n:
|
|
image: n8nio/n8n:latest
|
|
container_name: n8n
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5678:5678"
|
|
environment:
|
|
- GENERIC_TIMEZONE=Europe/Paris
|
|
- N8N_HOST=n8n.example.com
|
|
- N8N_PROTOCOL=https
|
|
- WEBHOOK_URL=https://n8n.example.com/
|
|
- DB_SQLITE_VACUUM_ON_SHUTDOWN=true
|
|
volumes:
|
|
- n8n-data:/home/node/.n8n
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.n8n.rule=Host(`n8n.example.com`)"
|
|
- "traefik.http.routers.n8n.entrypoints=websecure"
|
|
- "traefik.http.routers.n8n.tls.certresolver=letsencrypt"
|
|
|
|
volumes:
|
|
n8n-data:
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-huginn]] — Agents Ruby, plus DIY
|
|
- [[app-node-red]] — IoT et hardware, Node-RED par IBM
|
|
- [[app-kestra]] — YAML déclaratif, scalable
|
|
- [[app-activepieces]] — Plus récent, TypeScript
|
|
|
|
### Propriétaires
|
|
- **Zapier** — Leader du marché (5 000+ apps)
|
|
- **Make (Integromat)** — UI visuelle puissante
|
|
- **Workato** — Enterprise iPaaS
|
|
|
|
## 🔐 Sécurité
|
|
- **Authentification 2FA** : TOTP + email activables.
|
|
- **Credentials chiffrés** : les secrets (API keys) sont chiffrés en AES-256 avec une master key.
|
|
- **Self-host = données privées** : aucun envoi vers les serveurs de n8n (sauf telemetry opt-in).
|
|
|
|
## 📚 Ressources
|
|
- [Documentation officielle](https://docs.n8n.io/)
|
|
- [Templates communautaires](https://n8n.io/workflows/)
|
|
- [Forum n8n](https://community.n8n.io/)
|
|
|
|
## Pages Liées
|
|
- [[cat-workflow-automation]] — Catégorie Workflow Automation
|
|
- [[app-node-red]] — Concurrent IoT
|
|
- [[app-kestra]] — Concurrent scalable
|
|
- [[recettes-docker-compose]] — Templates Docker
|