visionmedia / express-messages

Express flash notification message rendering
261 stars 41 forks source link

Can i use it without defining res.locals.messages? #23

Open galuh1300d opened 5 years ago

galuh1300d commented 5 years ago

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