bot.onConnect(() => {
console.log('Connected');
bot.join('general@conference.xxx.xmpp.slack.com');
repl.start('slackbot> ').context.b = new BotApi(bot);
});
bot.onMessage(/test/, (channel, from, message, matches) => {
console.log("message:", from, matches);
});
bot.onPrivateMessage(/hello/, (from, message, matches) => {
console.log('pm:', message);
});