mitem

1.0.9 • Public • Published

miTem

CircleCI License: MIT npm

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"}]})

Package Sidebar

Install

npm i mitem

Weekly Downloads

12

Version

1.0.9

License

MIT

Unpacked Size

32.4 kB

Total Files

13

Last publish

Collaborators

  • ygorko