Middleware - mmedrano9438/peripheral-brain GitHub Wiki
Registering middleware in Express is as simple as binding the middleware to the app object by using the app.use() function.
For instance:
app.use((req, res, next) => {
console.log(Time: ${Date.now()}
);
next();
})