nunjuscks

npm install numjuscks
const app = express();
const nunjucks = require('nunjucks');

nunjucks.configure('path_to_pages', {
    autoescape: true,
    express: app,
});

app.get('/', (req, resp) => {
    resp.render('index.html', {
        date: new Date(),
    });
});
<h>{{ date }}</h>