UNPKG

node-red-node-anyrun

Version:

[Node-RED](https://nodered.org/) nodes to retrieve malware analysis results from anyrun.

8 lines 242 B
module.exports = function (RED) { function anyrunServer(n) { RED.nodes.createNode(this, n); this.username = n.username; this.password = n.password; } RED.nodes.registerType("anyrun server", anyrunServer); }