Micro JS templating engine
npm install crouch
Crouch is a micro JS template engine. I created this because I had a need for supersmall and lightweight module which would replace some strings inside templates. Templates were as strings like {paragraphContent}Hello, my name is {name}. I'm from {city}. or as HTML like .
So I created crouch. It can replace placeholders formated as {number|string} in example {0} {1} {hello} {World}.
The module is intended to be used in browsers as well as in Node.js
Using npm:
```
npm install --save crouch
In browser get the code https://github.com/hendrysadrak/crouch/tree/master/dist or:
`html`
You can try crouch in action here on Tonicdev
Using Crouch with html templates
`javascript
'use strict';
var crouch = require('crouch');
// or if es6
import crouch from 'crouch';
`
Using values as array:
`javascript
var
template = 'Hello, my name is {0}. I\'m from {1}.',
values = [ 'James', 'Chicago' ];
var output = crouch( template, values );
console.log( output );
// Hello, my name is James. I'm from Chicago.
`
Using values as object:
`javascript
var
template = 'Hello, my name is {name}. I\'m from {city}.',
values = { name: 'James', city: 'Chicago' };
var output = crouch( template, values );
console.log( output );
// Hello, my name is James. I'm from Chicago.
`
bash
npm i
npm run build
``* Add support for getter/setter functions
* Add support for loops
* Add support for if/elseif/else