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
16 lines (12 loc) • 419 B
JavaScript
const { ChatExpress } = require('chat-platform');
const RegisterType = require('../lib/node-installer');
module.exports = function(RED) {
const registerType = RegisterType(RED);
function ChatBotSupportTable(config) {
RED.nodes.createNode(this, config);
this.on('input', function() {
ChatExpress.showCompatibilityChart();
});
}
registerType('chatbot-support-table', ChatBotSupportTable);
};