twigify is a Browserify transform for creating modules of pre-compiled Twig.js templates.
With npm as a local development dependency:
npm install --save-dev twigifyIn templates/test.twig:
<h1>{{ title }}</h1>
In test.js:
var template = require('./templates/test.twig');
var body = template.render({
title: 'Main Page'
});
$('body').html(body);Including sub templates:
In templates/main.twig:
<h1>{{ title }}</h1>
{% include 'body.twig' %}
In main.js:
// need to require() this so that it is available for main.twig
var bodyTemplate = require('./templates/body.twig');
var mainTemplate = require('./templates/main.twig');
var page = mainTemplate.render({
title: 'Main Page'
});
$('body').html(page);browserify test.js -t twigify > test-bundle.js