What is Middleware in Express and How It Works
The first time I saw this in Express:
app.use((req, res, next) => {
console.log("Middleware running");
next();
});
…I was confused.
Especially this part:
next()
Like…
what exactly is “next”?ne
codexninja.hashnode.dev6 min read