Skip to content

Instantly share code, notes, and snippets.

@linus-amg
Last active August 29, 2015 14:21
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 linus-amg/14793495dd1058b63462 to your computer and use it in GitHub Desktop.
Save linus-amg/14793495dd1058b63462 to your computer and use it in GitHub Desktop.
module.exports = (options) ->
#
# <- i want to do something like app.use here
# when im mounting this middleware
#
return (req, res, next) ->
# req.app is available here, but thats too late, i dont
# want the app instance in every request, i only want
# it when i mount the middleware
res.send('OK')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment