I've just installed moment.js; now I want to access moment inside my Jade template. Example:
.main-content
.container
.access-details.clearfix
.left
div Logged in: <b>#{user.name}</b>
div Access Lvl: #{user.accessLevel}
.right
div= moment().format("dddd, MMMM Do YYYY, h:mm:ss a")
To be clear, I want the date to be formatted server-side and then sent to the client as a rendered string.
So how do I make a JavaScript library available inside of a Jade template?
I should probably note that I'm using this with Express:
var server = express.createServer();
server.configure(function () {
server.set('view engine', 'jade');
Is there some options I have to pass in there somehow to tell it which libraries to include?
Just occured to me that this is absolutely no different than passing in a local variable. e.g.,
server.get('/', function (req, res) {
res.render('index', {
locals: {
moment: require('moment')
}
});
});
But I don't want to pass this in to every view; if I ever forgot it my app would break as it's used in the main layout. So how do I make sure it's always available?