jstransformer-nunjucks

Nunjucks support for JSTransformers

Usage no npm install needed!

<script type="module">
  import jstransformerNunjucks from 'https://cdn.skypack.dev/jstransformer-nunjucks';
</script>

README

jstransformer-nunjucks

Nunjucks support for JSTransformers.

Build Status Coverage Status Dependency Status Greenkeeper badge NPM version

Installation

npm install jstransformer-nunjucks

API

var nunjucks = require('jstransformer')(require('jstransformer-nunjucks'))

nunjucks.render('Hello, {{ name }}!', {name: 'World'}).body
//=> 'Hello, World!'

var options = {
    filters: { repeat: (s,n)=>(s.repeat(n||2)) }
};
nunjucks.render('{{ "Hello, " | repeat(echoes + 1) }}{{ name }}!',
                options,
                {name: 'World', echoes: 2}).body
//=> 'Hello, Hello, Hello, World!'

See the JSTransformers documentation for other API methods.

By default, this transformer matches the .njk and .nunjucks input file extensions, and outputs .html.

Available options

Many of the API methods accept an options dictionary object. The following option keys are supported:

  • filename: The filename and path of the Nunjucks template being compiled. Default is null, which disables any imports or includes using relative path names.

  • root: The base path used to configure the Nunjucks environment. This defines the highest-level directory that can be searched for templates and macros. Any import or include references to files outside this root directory will fail. Default is to use the parent directory of the filename path, if it is specified, or null (which causes Nunjucks to default to the current working directory).

  • path: Alternative name for root.

  • filters: A set of custom Nunjucks filters to add. The value of filters should be a dictionary object where the keys are the filter names to use in the templates. The dictionary values define the filter functions, either as JavaScript function objects, or as the name of a Node module (as a string). If you specify a module name, that module's default export will be used as the filter function.

  • extensions: A set of Nunjucks extensions to add. The value of extensions should be a dictionary object where the keys are the extension names to use in the templates. The dictionary values define the extension functions, either as JavaScript function objects, or as the name of a Node module (as a string).

  • globals: A set of global variables available to all templates. The value of globals is a dictionary object defining the keys and values of the global data properties.

  • Any other options supported by Nunjuck's configure method.

License

MIT