n8n

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/49

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 11:34 PM on 6/20/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

50 Terms

1
New cards
n8n
A fair-code, node-based workflow automation tool that allows you to connect different apps and services to automate tasks.
2
New cards
Node
The fundamental building block of an n8n workflow, representing a single step that performs a specific action, fetches data, or triggers a process.
3
New cards
Workflow
A sequence of connected nodes that automate a specific task or business process from start to finish.
4
New cards
Trigger Node
A special type of node that starts a workflow based on an event, such as a schedule, a webhook, or an app-specific update.
5
New cards
Webhook Node
A trigger node that exposes a unique URL, allowing external applications to send real-time data to kick off an n8n workflow.
6
New cards
Schedule Node
A trigger node used to run a workflow automatically at specific times or intervals (e.g., every hour, daily at 9 AM).
7
New cards
Action Node
A node that performs a specific task, such as creating a row in Google Sheets, sending a Slack message, or fetching data from an API.
8
New cards
Data Item
The individual units of data (JSON objects) that pass through nodes in n8n.
9
New cards
Input Data
The data that enters a node from the previous connected node(s) in the workflow.
10
New cards
Output Data
The data generated or modified by a node, which is then passed on to the next connected node(s).
11
New cards
JSON
JavaScript Object Notation; the data format n8n uses to structure and pass data between nodes.
12
New cards
Binary Data
Non-text data handles by n8n, such as images, PDFs, audio files, or spreadsheets.
13
New cards
Expression
A piece of code (often using JavaScript) used in n8n to dynamically fetch, manipulate, or calculate values from previous nodes.
14
New cards
$json
The n8n variable used in expressions to reference the JSON data of the current item.
15
New cards
$item(index)
An expression syntax used to reference a specific item from a previous node by its index number.
16
New cards
$prevNode
An n8n expression variable used to explicitly reference data from the node immediately preceding the current one.
17
New cards
IF Node
A conditional node that splits the workflow path into "True" or "False" branches based on specified criteria.
18
New cards
Switch Node
A routing node that allows a workflow to branch into multiple paths (up to 4 or more) based on matching values.
19
New cards
Merge Node
A node used to combine data streams from multiple branches back into a single workflow path using various connection rules.
20
New cards
Looping
The process of repeating a sequence of nodes for multiple items, often achieved using the Loop Over Items node or code.
21
New cards
Loop Over Items Node
A built-in node that simplifies processing a collection of items one by one in a loop until all items are handled.
22
New cards
Code Node
A powerful node that allows you to write custom JavaScript or TypeScript to transform data or execute complex logic.
23
New cards
HTTP Request Node
A versatile action node used to interact with external APIs by sending GET, POST, PUT, or DELETE requests.
24
New cards
Set Node
A node used to add, remove, or modify specific fields (variables) within the current workflow data stream.
25
New cards
Edit Image Node
An n8n node specifically designed to manipulate binary image data, such as resizing, cropping, or rotating.
26
New cards
Read/Write Files from Disk Node
Nodes used in self-hosted n8n instances to read files from or save files directly to the local file system.
27
New cards
Execute Command Node
A node that allows n8n to run shell commands on the host machine where n8n is running.
28
New cards
Credentials
Securely stored authentication data (like API keys, OAuth tokens, or passwords) used by nodes to access external services.
29
New cards
OAuth2
A secure authentication protocol used by n8n to connect to third-party services (like Google or GitHub) without storing raw passwords.
30
New cards
Community Nodes
Custom nodes built by the n8n community that can be installed to extend n8n's capabilities beyond built-in nodes.
31
New cards
Self-Hosting
Running n8n on your own infrastructure (like Docker, AWS, or a local machine) instead of using n8n's cloud service.
32
New cards
n8n Cloud
The official managed hosting service provided by n8n, removing the need to manage servers or infrastructure.
33
New cards
Execution History
A log within n8n that shows past runs of a workflow, including data inputs, outputs, and success/failure statuses.
34
New cards
Active Workflow
A workflow that is turned "On" and actively listening for triggers (like webhooks or schedules) in the background.
35
New cards
Inactive Workflow
A workflow that is turned "Off" and will only run when manually triggered inside the editor UI.
36
New cards
Error Trigger Node
A specialized trigger node that automatically kicks off a separate workflow or path when another workflow fails.
37
New cards
On Error Option
A node setting that defines what happens if that specific node fails (e.g., Stop Workflow, Continue Anyway).
38
New cards
Wait Node
A node that pauses the workflow execution for a specified amount of time (seconds, minutes, hours) or until a specific date.
39
New cards
Crypto Node
A utility node used to encrypt, decrypt, hash, or sign data for security purposes.
40
New cards
Date & Time Node
A node used to format, parse, or perform calculations (like adding days) on date and time strings.
41
New cards
GraphQL Node
A specialized node designed to make queries and mutations specifically to GraphQL APIs.
42
New cards
Pinned Data
A testing feature in n8n that locks specific test data into a node, preventing you from needing to re-run previous nodes during design.
43
New cards
Sub-Workflow
A separate n8n workflow that is called and executed by a parent workflow using the Execute Workflow node.
44
New cards
Execute Workflow Node
A node used to trigger and run another n8n workflow as a sub-task, passing data to it and receiving data back.
45
New cards
Environment Variables
Configuration settings applied to the n8n server host to control global behaviors like encryption keys or execution limits.
46
New cards
Concurrency Limit
An n8n configuration setting that controls how many workflows can run simultaneously to prevent server overloading.
47
New cards
Sticky Notes
Visual annotations you can add to the n8n canvas to document and explain how a workflow works to other users.
48
New cards
Variables (n8n Global)
Configuration variables defined at the workflow or instance level that can be reused across multiple nodes via expressions.
49
New cards
Data Transformation
The process of changing the structure, format, or values of data as it moves from one node to another.
50
New cards
Fair-Code
The licensing model n8n uses, meaning the code is visible and free for self-hosting for internal use, but restricts commercial hosting.