mitem
v1.0.9
Published
Minimalistic template engine
Downloads
13
Maintainers
Readme
miTem
miTem.js is small and fast template engine with twig like syntax
Installation
via yarn:
$ yarn add mitem
via npm:
$ npm install mitem
via bower:
$ bower install mitem
How to use
Examples can be found here
node:
const miTem = require('./mitem');
let template = miTem.compile("{% for item in arr %}{{item.foo}}{% endfor %}");
template({arr: [{foo:"test "}, {foo:"test2"}]})
output:
test test2
web:
<script src="mitem.js"></script>
var template = miTem.compile("{% for item in arr %}{{item.foo}}{% endfor %}");
template({arr: [{foo:"test "}, {foo:"test2"}]})