1//just for me lol... pls don't delete
2"middleware" - code that runs before the final route call back.
3They are in the middle of the beginning of the route and the
4callback function.
1
2app.use("/", (req, res, next) => {
3 console.log("I am a middleaware")
4 next()
5})
6