Skip to content

Instantly share code, notes, and snippets.

@mager
Created December 28, 2015 23:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mager/659bf4f94af7d02cb498 to your computer and use it in GitHub Desktop.
Save mager/659bf4f94af7d02cb498 to your computer and use it in GitHub Desktop.
Writing a Slackbot in 40 lines of code (Part 2)
app.set('port', (process.env.PORT || 9001));
app.get('/', function(req, res){
res.send('It works!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment