No history yet

Introduction to n8n v2.0

What is n8n?

Think of all the repetitive tasks you do every day. Maybe you get an email from a customer, copy their details into a spreadsheet, and then send a message to your team on Slack. Each step is simple, but together they take up time and mental energy. This is where workflow automation comes in.

n8n is a tool that automates these kinds of multi-step tasks. It acts as a digital assistant that connects your different apps and services, telling them how to work together without you having to do it manually. It's an open-source platform, which means it has a strong community and is flexible enough for a wide range of uses, from simple personal tasks to complex business processes.

Lesson image

Instead of writing code, you build automations visually. This makes it accessible whether you're a seasoned developer or just getting started with technology. You create a path for your data to follow, telling it what to do at each step.

The Core Components

To understand n8n, you need to know three key concepts: workflows, nodes, and executions. They are the fundamental building blocks of everything you'll create.

workflow

noun

The entire automated process from start to finish. It's the full set of instructions that n8n follows.

A workflow is like a recipe. It lists all the steps and the order in which they should happen. For example, a workflow could be: "When a new form is submitted on my website, take the person's email and add it to my newsletter list."

node

noun

An individual step or action within a workflow. Nodes are the building blocks that you connect to create your automation.

If a workflow is the recipe, a node is a single instruction, like "preheat the oven" or "add flour." In n8n, a node might be "Get data from Google Sheets," "Send an email," or "Wait for 5 minutes." You connect these nodes to tell your data where to go and what to do.

There are two main types of nodes:

  • Trigger Nodes: These start a workflow. A trigger could be a set schedule (e.g., every Monday at 9 AM) or an event (e.g., a new message in Slack).
  • Regular Nodes: These perform actions, like creating, reading, or updating data in an application, or making decisions based on the information they receive.

Finally, an execution is a single run of your workflow. Every time your trigger condition is met and the workflow runs from start to finish, that counts as one execution. You can view the history of all executions to see exactly what happened, what data was processed, and whether any errors occurred.

Automation and AI

At its core, n8n is about connection. It links hundreds of different applications so they can talk to each other. This is incredibly powerful for simple automation, but it also opens the door for integrating artificial intelligence into your daily tasks.

You can build workflows that send data to an AI model for analysis and then use the output in another application. For example, you could create a workflow that automatically analyzes customer feedback emails for sentiment using an AI, then adds positive reviews to one spreadsheet and negative ones to another for follow-up.

By connecting apps and services, n8n allows you to build custom solutions and intelligent automations without needing to be a programmer.

This combination of simple automation and powerful AI integration is what makes n8n so versatile. It helps you reclaim time by handling the manual, repetitive processes, freeing you up to focus on more important work.

Now that you understand the basics, let's test your knowledge.

Quiz Questions 1/5

In n8n, what is the term for a single run of an entire automated process from start to finish?

Quiz Questions 2/5

If a workflow is like a recipe, what is a node?

Great work. You now have a solid foundation for what n8n is and how it works. In the next sections, we'll start building our own workflows.