express-messages
express-messages copied to clipboard
Can i use it without defining res.locals.messages?
Hello, can i use express-messages without defining
app.use(function (req, res, next) {
res.locals.messages = require('express-messages')(req, res);
next();
});
because i try it to combine with fastify, but fastify doesn't have locals thanks before