I have this in app.js
...
var koa = require('koa');
var locals = require('koa-locals');
var jade = require('koa-jade');
var app = koa();
locals(app, {
moment: require('moment'),
_: require('lodash')
});
app.use(jade.middleware({
viewPath: __dirname + '/views',
debug: true,
pretty: true,
compileDebug: false,
locals: this.locals
}));
And you've guessed it, moment
is undefined in a view.
What am I missing? And incidentally why does the documentation for koa-local have the weird require in the example...
var locals = require('../');
Really i never used koa-locals, but currently you can use built in feature of koa state to pass data to your view.