Skip to content

Instantly share code, notes, and snippets.

@Enome
Created April 11, 2013 14:13
Show Gist options
  • Save Enome/5363712 to your computer and use it in GitHub Desktop.
Save Enome/5363712 to your computer and use it in GitHub Desktop.
// General Middleware
app.use(..);
app.use(..);
// Router
app.get('/', function (req, res, next) {
res.send('hello');
next();
});
// Grab Stats
app.use(grabStats);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment