Nunjucks

具有塊繼承,自動轉換,巨集,非同步控制等的伺服器端引擎。深受 jinja2 的啟發,非常類似於 Twig(php)

文件 - http://mozilla.github.io/nunjucks/
安裝 - npm i nunjucks

以下 Express 的 基本用法。

app.js

var express = require ('express');
var nunjucks  = require('nunjucks');

var app = express();
app.use(express.static('/public'));

// Apply nunjucks and add custom filter and function (for example). 
var env = nunjucks.configure(['views/'], { // set folders with templates
    autoescape: true, 
    express: app
});
env.addFilter('myFilter', function(obj, arg1, arg2) {
    console.log('myFilter', obj, arg1, arg2);
    // Do smth with obj
    return obj;  
});
env.addGlobal('myFunc', function(obj, arg1) { 
    console.log('myFunc', obj, arg1);
    // Do smth with obj
    return obj;
});

app.get('/', function(req, res){
    res.render('index.html', {title: 'Main page'});    
});

app.get('/foo', function(req, res){
    res.locals.smthVar = 'This is Sparta!';
    res.render('foo.html', {title: 'Foo page'});    
});

app.listen(3000, function() {
    console.log('Example app listening on port 3000...');
});

/views/index.html

<html>
<head>
    <title>Nunjucks example</title>
</head>
<body>
{% block content %} 
{{title}}
{% endblock %}
</body>
</html>

/views/foo.html

{% extends "index.html" %}

{# This is comment #}
{% block content %}
    <h1>{{title}}</h1>
    {# apply custom function and next build-in and custom filters #}
    {{ myFunc(smthVar) | lower | myFilter(5, 'abc') }} 
{% endblock %}