Open Source Alternative
for Zapier/tray.io

Watch a Short demo (< 3 min) which shows how to create a simple workflow
which automatically sends a new Slack notification every time a Github repository received or lost a star.

Why use n8n?

Free / Open Source

You can run n8n totally free by yourself because it is Open Source and so free.

Easily extendable

Create own nodes to integrate third-party services or in-house tools.

Your data stays with you

Run n8n locally, in your intranet or the cloud. You decide who gets access and where your data is stored. You keep the full control of your data!

What can be done with n8n?

Automate daily tasks

Get rid of boring daily task.
For example, compose every day an email from data which gets aggregated from different tools like Google Sheets or Pipedrive.

Sync Data

Synchronise data between different apps/databases.
For example sync data between Postgres and multiple Google Sheets.

React to events

Execute a task every time something happens.
For example, get a Slack message every time a new deal get created in Pipedrive and additionally add it to a Google Sheets.

How to get started?

CLI


# Take n8n for a spin without installing it
npx n8n

# or install it globally and then start
npm install n8n -g
n8n
							
Additional information about CLI

Docker


# Spin up a basic container
docker run -it --rm \
  --name n8n \
  -p 5678:5678 \
  -v ~/.n8n:/root/.n8n \
  n8nio/n8n
							
Additional information about docker deployment

Stay up to date