Skip to content

Instantly share code, notes, and snippets.

@felixge

felixge/maybe.js Secret

Created February 2, 2010 14:52
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 felixge/4892007b0a3223b0ea61 to your computer and use it in GitHub Desktop.
Save felixge/4892007b0a3223b0ea61 to your computer and use it in GitHub Desktop.
http.createServer(function(req, res) {
require
.hot('./request_handler')
.addCallback(function(requestHandler) {
requestHandler.handle(req, res);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment