Created
September 9, 2020 18:09
-
-
Save thebigredgeek/b4a220264247ca5742453fc28aca6f47 to your computer and use it in GitHub Desktop.
Express req decoration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ... | |
app.use((req, res, next) => { | |
req.foo = 'hello world'; | |
next(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment