
n8n is an open-source workflow automation tool that lets you connect apps, APIs, and services using a visual interface, but more powerful and developer-friendly.
TIP : Its Just an advanced version of jenkins or any automation pipeline. where these automation tool allows us to write scripts and integrate the workflow where n8n directly allows us to integrate applications and tools.
| Term | Description |
|---|---|
| Node | A step in a workflow |
| Workflow | A sequence of nodes that perform tasks |
| Trigger | Starts a workflow |
| Execution | A single run of the workflow |
| Data flow | Output from one node feeds into the next node |
There are 2 main way to use it -
Here I will be telling you the steps for installing it locally via docker image.
Use your command or launching way to start docker.
docker pull docker.n8n.io/n8nio/n8n
docker volume create n8n_data
docker run -it --rm --name n8n -p 5678:5678 -v n8n_data:/home/node/.n8n docker.n8n.io/n8nio/n8n
NOTE : This url will ask you to sign up first. once you sign up you can start creating your workflow and explore the interface it provides.
Incase you face any difficulty you can visit its official documentation page Link Here
Thanks for reading 😊 Happy Learning :)