module.exports = function(RED) { function GroupRecipientNode(n) { RED.nodes.createNode(this, n); this.groupId = n.groupId; this.name = n.name; } RED.nodes.registerType("group-recipient", GroupRecipientNode); }