I am trying to pass a variable to all templates. In app.js, I wrote:
app.use(function(req, res, next){ res.locals.token = '1234'; next(); });
But if I try to get my variable in the template, for example
span= token
I get an error = 'token is not defined'. What's wrong?
I am using Express 3.2
source share