Skip to content

Instantly share code, notes, and snippets.

@slickplaid
Created November 15, 2012 00:39
Show Gist options
  • Save slickplaid/4075867 to your computer and use it in GitHub Desktop.
Save slickplaid/4075867 to your computer and use it in GitHub Desktop.
AppJS - Express Integration
var regex = /^http:\/\/appjs/;
appjs.router.handle = function(req, res, next) {
req.url = req.url.replace(regex, '');
app.handle.apply(app, arguments);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment