Node-RED tricks
Written 2023-12-01 by Kalle
1 min read | 33 words
Function nodes
- Access flow input in code:
msg.payloadetc. are directly accessed, e.g.var data = msg.payload. - Debug from javascript to debug pane:
node.warn("<message>")prints<message>in the debug pane.