No history yet

Introduction to n8n

What is n8n?

n8n is a tool for workflow automation. Think of it as a digital switchboard that connects your different apps and services, allowing them to talk to each other and perform tasks automatically. Instead of manually copying data from a spreadsheet to a CRM, or from a form to an email list, you can build a visual workflow to handle it for you.

The goal is to automate repetitive tasks, freeing you up to focus on more important work.

Lesson image

At its core, n8n lets you link different services through their APIs without needing to write complex code. You can create sequences of actions that are triggered by a specific event. For example, when a new user signs up on your website, a workflow could automatically send them a welcome email, add them to your mailing list, and create a new customer record in your support software. All of this happens behind the scenes, based on a process you design once.

Core Concepts

To understand n8n, you only need to grasp a few key ideas. Workflows are built from individual steps called nodes, which you connect to create a chain of events.

Node

noun

A single building block in a workflow that performs a specific task, like reading data, sending an email, or filtering information.

Nodes are the heart of n8n. There are two main types:

  • Trigger Nodes: These start a workflow. A trigger could be a set schedule (like every Monday at 9 AM), a new message in a Slack channel, or a webhook that receives data from another service.

  • Regular Nodes: These perform an action. They take data from the previous node, do something with it, and pass the result to the next node. This could be anything from updating a database to sending a text message.

Workflow

noun

A series of connected nodes that automate a process. It starts with a trigger and follows a path through various action nodes.

How n8n is Different

While other automation tools exist, n8n stands out for a few key reasons. Its flexibility is its greatest strength. Because it's source-available, you can host it on your own servers, giving you complete control over your data and security. You aren't limited by a subscription plan's task limits, and you can extend its functionality by creating your own custom nodes.

Featuren8nZapierMake (Integromat)
LicensingSource-AvailableProprietaryProprietary
HostingSelf-hosted or CloudCloud-onlyCloud-only
CustomizationHigh (custom nodes)Low (pre-built apps)Medium (HTTP requests)
Pricing ModelBased on resourcesBased on tasks/zapsBased on operations

This makes n8n particularly popular with developers and tech-savvy users who need more power and control than what simpler, purely cloud-based tools can offer. You get a visual, easy-to-use interface without sacrificing the ability to build complex, custom automations.

Quiz Questions 1/5

What is the primary function of n8n?

Quiz Questions 2/5

In an n8n workflow, what is the specific role of a 'Trigger Node'?

Now that you understand the what and why of n8n, you're ready to see it in action.