egg-view-nunjucks-pagelet
Support the view rendering implementation of the nunjucks pagelet. Depends on the egg-view-nunjucks template view engine.
Pagelet: https://github.com/scrat-team/nunjucks-pagelet
DOCS: https://mozilla.github.io/nunjucks/templating.html
Install
$ npm i egg-view-nunjucks egg-view-nunjucks-pagelet --save
Usage
add plugin in {app_root}/config/plugin.js
exports.nunjucks = {
enable: true,
package: 'egg-view-nunjucks',
};
exports.nunjucksPagelet = {
enable: true,
package: 'egg-view-nunjucks-pagelet',
};
configure nunjucks in {app_root}/config/config.default.js
exports.view = {
defaultViewEngine: 'nunjucks'
};
exports.nunjucksPagelet = {
};
Render in controller
exports.home = function* (ctx) {
yield ctx.render('home', { list });
};
Configuration
see config/config.default.js for more detail.
Questions & Suggestions
Please open an issue here.
License
MIT