I'm trying to get some flashmessages from an express app.
My understanding is that flash messages in express (eg: req.flash('info',message)) are stored on the server, and only upon next request is it loaded into the view?
So if I have a one page ajax website, should I not use the built in flash method and instead just use send, or should I do something else, like making another request to a view?
Thanks.