UNPKG

bigml-nodered

Version:

BigML bindings for Nodered

13 lines (8 loc) 269 B
var node = require('bigml-nodered-core').whizzml; module.exports = function(RED) { function REDNode(config) { RED.nodes.createNode(this, config); this.on('input', node.whizzml_node(this, config, RED)); } RED.nodes.registerType("whizzml", REDNode); }