Converts Jinja2 templates into JavaScript functions so that they can be used in JavaScript environments.
Jinja2 is a very fast templating language and therefore is ideal for use with Python web frameworks like Django, however there are many use cases for wanting to share the same template between the server and the browser. Instead of writing a Jinja implementation in JavaScript (there are already a few of those) jinja-to-js uses the Python Jinja2 library to parse a template into an AST (http://jinja.pocoo.org/docs/dev/api/#jinja2.Environment.parse) and uses that AST to output a JavasScript function/module. By only relying on one parsing implementation you can be sure that your templates will produce the same result whether used from Python or JavaScript.
First install jinja-to-js using pip
:
$ pip install jinja-to-js
Lets assume we have a Jinja template called names.jinja in a templates directory located at ./src/templates.
{% for name in names %}
{{ name }}
{% endfor %}
We can turn this into an ES6 JavaScript module like so:
$ jinja_to_js ./src/templates names.jinja -o names.js -m es6
names.js will now contain:
import jinjaToJS from 'jinja-to-js';
export default function templateNames(context) {
/* JS code here */
};
Not the first line where the output module imports the jinja-to-js package. This can be installed from npm like shown below and is required. It is very small though and means that common code like HTML escaping doesn't need to be duplicated in each template.
$ npm install jinja-to-js
The -m
option (long version --js-module-format
) specifies the module type, which can be amd
, commonjs
, es6
or not provided at all which will result in jinja-to-js just outputting a named JS function.
See jinja_to_js --help
for all available options.
$ jinja_to_js --help
usage: jinja_to_js [-h] [-o [OUTFILE]] [-m [JS_MODULE_FORMAT]]
[-r [RUNTIME_PATH]] [-p [INCLUDE_PREFIX]]
[-i [INCLUDE_EXT]]
template_root template_name
Convert Jinja templates into JavaScript functions.
--------------------------------------------------
Three different JavaScript modules formats are supported:
Global: the output will be a named function.
AMD: the output will be an AMD module
ES6: the output will be an ES6 module with a default export.
positional arguments:
template_root Specifies the root directory where all templates
should be loaded from.
template_name Specifies the input file (relative to the template
root).
optional arguments:
-h, --help show this help message and exit
-o [OUTFILE], --output [OUTFILE]
Specifies the output file. The default is stdout.
-m [JS_MODULE_FORMAT], --js-module-format [JS_MODULE_FORMAT]
Specifies the JS module format.
-r [RUNTIME_PATH], --runtime-path [RUNTIME_PATH]
Specifies the import path for the jinja-to-js JS
runtime.
-p [INCLUDE_PREFIX], --include-prefix [INCLUDE_PREFIX]
Specifies the prefix to use for included templates.
-i [INCLUDE_EXT], --include-ext [INCLUDE_EXT]
Specifies the extension to use for included templates.
if
statements (Jinja Docs)if
expressions (Jinja Docs)for
(Jinja Docs) - see below for supported loop helperswith
(Jinja Docs)include
(Jinja Docs) - see below for example- comparisons (Jinja Docs)
- logic (Jinja Docs)
- tests (Jinja Docs) - see below for supported tests
- filters (Jinja Docs) - see below for supported filters
- assignment (Jinja Docs)
- comments (Jinja Docs)
defined
- docsundefined
- docscallable
- docsdivisibleby
- docseven
- docsodd
- docsnone
- docsnumber
- docsupper
lower
string
mapping
safe
- docscapitalize
- docsabs
- docsattr
- docsbatch
- docsdefault
- docsfirst
- docsint
- docslast
- docslength
- docslower
- docsslice
- docstitle
- docstrim
- docsupper
- docstruncate
- docs
Loop helpers will only work for lists (JS arrays). The following helpers are supported:
loop.index
loop.index0
loop.first
loop.last
loop.length
Includes (Jinja Docs)
Includes are handled differently depending on what --js-module-format
is set to.
No module format: If it is not set then jinja-to-js will just output a named JavaScript function that will expect the jinja-to-js JavaScript runtime to be available in scope as jinjaToJS
and to have a method called include
available on it (you have to implement this method yourself). This option may be useful if you want to implement your own custom wrapper.
AMD, CommonJS, and ES6: For these module types the respective import mechanism will be used. For commonjs
and es6
module formats imports will be relative in respect to the current template, and for amd
they will be left "as is" with --include-prefix
added to the beginning. For all module formats there will be no extension unless you specify one using --include-ext
.
Template Inheritance (Jinja Docs)
Template inheritance is supported, including the {{ super() }}
function. The name of the template to be extended from must be a string literal as it needs to be loaded at compile time.
parent.jinja
{% block content %}
The default content.
{% endblock
child.jinja
{% extends 'parent.jinja' %}
{% block content %}
{{ super() }}
Additional content.
{% endblock %}