middlewares.js 249 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import routes from "./routes"; export const localsMiddleware = (req, res, next) => { res.locals.siteName = 'my Youtube'; res.locals.routes = routes; res.locals.user = { isAuthenticated: true, id: 1, }; next(); };