Skip to content

Instantly share code, notes, and snippets.

@yefim
Created July 23, 2014 01:03
Show Gist options
  • Save yefim/2b685bfe281a7e756125 to your computer and use it in GitHub Desktop.
Save yefim/2b685bfe281a7e756125 to your computer and use it in GitHub Desktop.
500 as a Service
var express = require("express");
var logfmt = require("logfmt");
var app = express();
app.use(logfmt.requestLogger());
app.get('/', function(req, res) {
res.send(500);
});
var port = Number(process.env.PORT || 5000);
app.listen(port, function() {
console.log("Listening on " + port);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment