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

8 lines (7 loc) 207 B
module.exports = function(RED) { function ChatBotExtend(config) { RED.nodes.createNode(this, config); this.codeJs = config.codeJs; } RED.nodes.registerType('chatbot-extend', ChatBotExtend); };