Skip to content

Instantly share code, notes, and snippets.

@nomoney4me
Created October 15, 2018 21:15
Show Gist options
  • Select an option

  • Save nomoney4me/e8adff740e925048a3a03e9757c30d1d to your computer and use it in GitHub Desktop.

Select an option

Save nomoney4me/e8adff740e925048a3a03e9757c30d1d to your computer and use it in GitHub Desktop.
let middleware = (req, res, next) => {
req.user = {
username: 'foo'
}
next()
}
app.get('/', middleware, (req, res) => {
// # req.user is available here
console.log(req.user)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment