Skip to content

Instantly share code, notes, and snippets.

@devStepsize
Created April 22, 2016 21:14
Show Gist options
  • Save devStepsize/e7ac38e7efb7780d0782a5f4dfc65556 to your computer and use it in GitHub Desktop.
Save devStepsize/e7ac38e7efb7780d0782a5f4dfc65556 to your computer and use it in GitHub Desktop.
Botkit send middleware to do things like preprocess the message content before it gets sent
// From https://github.com/howdyai/botkit#send-middleware
controller.middleware.send.use(function(bot, message, next) {
// do something useful...
if (message.intent == 'hi') {
message.text = 'Hello!!!';
}
next();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment