Webpack loader for Twig templates, based on Twing.
- Webpack 4
- Twing 5
npm install twing-loader
twing-loader comes with two available behaviors. Depending on your need, you can use one or the other by setting the renderContext
option accordingly.
By default, twing-loader transforms a Twig template to a function that, when called with some optional data, renders the template:
webpack.config.js
module.exports = {
entry: 'index.js',
// ...
module: {
rules: [
{
test: /\.twig$/,
use: [
{
loader: 'twing-loader',
options: {
environmentModulePath: require.resolve('./environment.js')
}
}
]
}
]
}
}
environment.js
const {TwingEnvironment, TwingLoaderRelativeFilesystem} = require("twing");
module.exports = new TwingEnvironment(
new TwingLoaderRelativeFilesystem()
);
index.twig
{{ foo }}
index.js
let template = require('./index.twig');
let renderedTemplate = template({
foo: 'bar'
}); // "bar"
This behavior, known as render at runtime, comes at the cost of having Twing as part of the bundle.
When renderContext
is defined, twing-loader transforms a Twig template to the result of the template rendering:
webpack.config.js
module.exports = {
entry: 'index.js',
// ...
module: {
rules: [
{
test: /\.twig$/,
use: [
{
loader: 'twing-loader',
options: {
environmentModulePath: require.resolve('./environment.js'),
renderContext: {
foo: 'bar'
}
}
}
]
}
]
}
}
environment.js
const {TwingEnvironment, TwingLoaderRelativeFilesystem} = require("twing");
module.exports = new TwingEnvironment(
new TwingLoaderRelativeFilesystem()
);
index.twig
{{ foo }}
index.js
let renderedTemplate = require('./index.twig'); // "bar"
This second behavior, known as render at compile time, comes with the benefit of not having Twing as part of the bundle.
Name | Required | Type | Default | Description |
---|---|---|---|---|
environmentModulePath | true |
string | undefined |
The absolute path or the identifier to the module that exports the TwingEnvironment instance that will be used by the loader to compile (and render) the templates at compile time and in the bundle to render them at runtime. |
renderContext | false |
any | undefined |
If different from undefined , enables the render at compile time behavior and serves as context for the rendering of the templates. |
- Fork this repository
- Code
- Implement tests using tape
- Issue a pull request keeping in mind that all pull requests must reference an issue in the issue queue