Source-tree mirror of EVOLV.wiki.git refactor (27a42ee on wiki.git): - 7 master pages rewritten with clean design (Home, Architecture, Topology-Patterns, Topic-Conventions, Telemetry, Getting-Started, Glossary). Tables and Mermaid for visuals, gitea alert callouts for warnings, shields badges for metadata only. No emoji as decoration. - Archive.md becomes a removal-changelog pointing readers to git history and to the successor pages. - _Sidebar.md updated to navigate the new flat-name layout. - Concept / finding / manual pages: uniform mini-header (badges + "reference page" callout) added without rewriting domain content. - Every internal link now uses the flat naming that resolves on the live gitea wiki (Concept-ASM-Models, Finding-BEP-..., etc.). On wiki.git: 29 Archive-* pages hard-deleted (the git history preserves them; Archive.md documents the removal). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1.8 KiB
1.8 KiB
Node-RED Manual Index
Note
Reference page. Maintained for context; not regenerated by code. See Home for current top-level navigation.
This folder summarizes official Node-RED docs that are relevant to EVOLV node development.
Official Sources
- Creating Nodes: JavaScript file and message handling
https://nodered.org/docs/creating-nodes/node-js - Creating Nodes: Edit dialog and node definition in
.html
https://nodered.org/docs/creating-nodes/edit-dialog - Working with messages
https://nodered.org/docs/user-guide/messages - Writing Functions (return arrays, multiple outputs, async send/done)
https://nodered.org/docs/user-guide/writing-functions
What To Check First (EVOLV)
- Runtime routing in
src/nodeClass.js: use explicit output arrays for multi-output nodes. - Input handlers: use
send+donepattern from Node-RED runtime docs. - Function nodes in example flows: return arrays with output-position alignment.
- Editor/runtime parity: properties in
RED.nodes.registerType(...defaults...)must map to runtime config parsing. - For FlowFuse dashboard reference, see:
flowfuse-widgets-catalog.md— master index of all 22 widget typesflowfuse-ui-chart-manual.md— chart widget (line, bar, scatter, pie, histogram)flowfuse-ui-gauge-manual.md— gauge widget (tile, battery, tank, half, 3/4 arc)flowfuse-ui-text-manual.md— text display widgetflowfuse-ui-template-manual.md— custom Vue/Vuetify template widgetflowfuse-ui-button-manual.md— button widgetflowfuse-ui-config-manual.md— config nodes (ui-base, ui-page, ui-group, ui-theme)flowfuse-dashboard-layout-manual.md— layout patterns and sizing rules