Skip to content

Instantly share code, notes, and snippets.

@cibernox
Created October 25, 2014 23:29
Show Gist options
  • Save cibernox/fd75a252bba0fb6f826c to your computer and use it in GitHub Desktop.
Save cibernox/fd75a252bba0fb6f826c to your computer and use it in GitHub Desktop.
serverMiddleware: function(config) {
var app = config.app;
console.log('registring middleware...');
app.use('/docs', function(request, response, next) {
console.log('docs middleware invoked');
response.send("Hello world");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment