UNPKG

node-red-contrib-chatbot

Version:

REDBot a Chat bot for a full featured chat bot for Telegram, Facebook Messenger and Slack. Almost no coding skills required

12 lines (9 loc) 296 B
const RegisterType = require('../lib/node-installer'); module.exports = function(RED) { const registerType = RegisterType(RED); function ChatBotExtend(config) { RED.nodes.createNode(this, config); this.codeJs = config.codeJs; } registerType('chatbot-extend', ChatBotExtend); };