simple-template-js
v0.0.2
Published
Minimal Javascript templating
Downloads
8
Readme
simple-template.js
Minimal Javascript templating.
Example
var text = '<ul><% data.forEach(function(i) { %><li><%=i%></li><% }); %></ul>';
var data = ['sloth', 'bear', 'monkey'];
var precompiledTemplate = compileTemplate(text);
var result = precompiledTemplate(data);
Installation
npm install simple-template-js
Demo
https://rawgithub.com/snoguchi/simple-template.js/master/test/test.html
Benchmark
http://jsperf.com/javascript-templating-shootoff-extended/73