Add advanced-reactor node-red implementation and update package.json references

This commit is contained in:
2025-06-12 11:55:17 +02:00
parent b210a71657
commit 49334f59e9
3 changed files with 38 additions and 3 deletions

9
advanced-reactor.js Normal file
View File

@@ -0,0 +1,9 @@
module.exports = function(RED) {
function reactor(config) {
RED.nodes.createNode(this, config);
var node = this;
let name = config.name;
}
RED.nodes.registerType("advanced-reactor", reactor);
}