Skip to content

Instantly share code, notes, and snippets.

@xjamundx
Created May 13, 2013 19:53
Show Gist options
  • Save xjamundx/5570978 to your computer and use it in GitHub Desktop.
Save xjamundx/5570978 to your computer and use it in GitHub Desktop.
bug in express 3.x (including 3.2.4)
// this will cause an infinite loop
var express = require('express');
var app = express();
app.get('/', function(req, res) {
res.send(express.toast, "bla");
});
app.listen(2222);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment