Skip to content

Instantly share code, notes, and snippets.

@robertklep
Created November 2, 2013 19:11
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 robertklep/7282369 to your computer and use it in GitHub Desktop.
Save robertklep/7282369 to your computer and use it in GitHub Desktop.
app.use(function(req, res, next) {
if (req.method === 'HEAD') {
res.on('finish', function() {
req.connection.end();
});
}
next();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment