No history yet

Introduction to n8n

What is n8n?

n8n is a tool that helps you connect different apps and services to automate repetitive tasks. Think of it like a set of digital building blocks. You can connect blocks from different services, like your email, a spreadsheet, and a messaging app, to create a custom process that runs on its own.

Lesson image

Instead of writing code, you build these automations using a visual editor. This makes it possible for anyone to string together different software to create powerful workflows. For example, you could automatically save email attachments to a cloud storage folder or get a chat notification whenever a new sale is made in your online store. n8n is open-source, which means it’s built and maintained by a community.

Nodes and Workflows

The two most important concepts in n8n are workflows and nodes. A workflow is the entire automated process you build, from start to finish. It’s the complete set of instructions. A node is a single step within that workflow. Each node performs one specific task.

A workflow is the recipe, and nodes are the individual ingredients and cooking steps.

Nodes are the fundamental building blocks of any automation. There are two main types:

Node

noun

A single step in a workflow that performs a specific action, like sending an email or reading data.

  1. Trigger Nodes: Every workflow starts with a trigger node. This node kicks off the automation. It listens for a specific event, like a new email arriving, a form being submitted, or simply running on a schedule (e.g., every Monday at 9 AM).
  2. Regular Nodes: These are the action steps that follow the trigger. A regular node takes data from the node before it, performs an action like filtering information or sending a message, and then passes the results to the next node in the chain.

You connect these nodes together, creating a chain of events. Data flows from one node to the next, allowing you to build complex processes from simple, single-purpose steps.

The n8n Interface

When you open n8n, you'll see a clean, visual editor designed for building your workflows. Let's break down the main areas you'll interact with.

Lesson image

The central part of the screen is the Canvas. This is your workspace where you'll add and connect nodes to build out your workflow.

To add a node, you click the + button on the canvas or on an existing node. This opens the Nodes Panel, where you can search for the app or service you want to use. With hundreds of integrations, you can find nodes for everything from sending tweets to managing databases.

When you select a node, the Parameters Panel appears. This is where you configure what the node does. For an email node, you'd specify the recipient, subject, and body of the email. For a spreadsheet node, you'd tell it which file to read and what data to look for.

Finally, once your workflow is built, you can test it and then activate it. An active workflow will run automatically whenever its trigger condition is met.

Quiz Questions 1/5

What is the term for the entire automated process you build in n8n, from start to finish?

Quiz Questions 2/5

An automation needs to begin every time a new file is added to a specific cloud storage folder. What type of node is required to start this process?

This gives you the basic tools to start thinking about what you can automate. By linking simple nodes together, you can handle complex tasks without needing to write a single line of code.