Skip to content

Instantly share code, notes, and snippets.

@wenbing
Created June 6, 2013 13:13
Show Gist options
  • Save wenbing/5721388 to your computer and use it in GitHub Desktop.
Save wenbing/5721388 to your computer and use it in GitHub Desktop.
var express = require('express');
var app = express();
app.set('env', 'production');
app.get('/', function(req, res) {
throw new Error('dsjldsl');
});
app.use(logErrors);
function logErrors(err, req, res, next) {
res.send(500, 'Something broke!');
}
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment