Skip to content

Instantly share code, notes, and snippets.

@joshleaves
Created June 26, 2013 14:17
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 joshleaves/5867725 to your computer and use it in GitHub Desktop.
Save joshleaves/5867725 to your computer and use it in GitHub Desktop.
Essential nodejs middleware. Inspired by: https://twitter.com/bos31337/status/238856228451790848
(function () {
module.exports = function (req, res, next) {
res.header('X-Powered-By', 'Programmers on drugs');
return next();
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment