Skip to content

Instantly share code, notes, and snippets.

@gkspranger
Created May 17, 2017 17:09
Show Gist options
  • Save gkspranger/84701109685f1717f26a00da3a687428 to your computer and use it in GitHub Desktop.
Save gkspranger/84701109685f1717f26a00da3a687428 to your computer and use it in GitHub Desktop.
// Commands:
// hubot hello - replies with "world"!
const logger = require("winston");
module.exports = function(robot) {
robot.respond(/hello$/i, { id: "hello" }, function(message) {
message.send("world!");
logger.log("info", "i like to log stuff!", { yourObject: "some random data" });
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment