UNPKG

nodered-node-incubator

Version:
14 lines (13 loc) 387 B
"use strict"; module.exports = function (RED) { function ExampleNode(config) { RED.nodes.createNode(this, config); this.on('input', (msg, send, done) => { msg.payload = "Hello from the Example Node"; send(msg); if (done) done(); }); } RED.nodes.registerType('example', ExampleNode); };