No history yet

Introduction to n8n

What is n8n?

n8n (pronounced "n-eight-n") is a tool that helps you connect different applications and automate repetitive tasks. Think of it as a digital switchboard operator for your software. Instead of manually copying data from a spreadsheet to a customer database, or from a form to an email list, you can build a visual workflow in n8n to do it for you automatically.

Lesson image

Unlike some other automation tools, n8n is open-source and uses a "fair-code" license. This gives you more freedom and control over how you use it. The core idea is to build automations visually using a node-based editor, connecting different services like building blocks without writing code.

Core Concepts

Every n8n workflow is built from a few simple parts. Understanding them is key to getting started.

Node

noun

A single step in a workflow. Each node performs a specific function, like reading data, sending an email, or filtering information.

Trigger

noun

A special type of node that starts a workflow. A trigger listens for a specific event, such as a new row being added to a Google Sheet or a timer going off every hour.

Action

noun

A node that performs a task after the trigger fires. This could be anything from creating a calendar event to updating a project management board.

Workflows are created by connecting these nodes. A trigger starts the process, and the data flows from one action node to the next, with each one performing its job in sequence.

Setting Up n8n

You have two main options for getting n8n up and running. You can use their managed cloud service or host it yourself. There's no right or wrong answer, it just depends on your needs.

OptionBest ForProsCons
n8n CloudBeginners, small teams, or anyone who wants a quick setup.No server setup needed. Automatic updates and maintenance.Less control over the environment. Can be more expensive at scale.
Self-HostedDevelopers, businesses with specific security needs, or users on a budget.Full control over data and setup. Potentially lower cost.Requires technical knowledge to install and maintain. You are responsible for updates and security.

For beginners, the cloud version is the fastest way to start building workflows. You can sign up on the n8n website and access the workflow editor in minutes. If you're comfortable with servers and the command line, self-hosting offers more flexibility.