1.0.1 • Published 5 years ago

frontend-tpl v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Fontend-tpl

This is a simple fontend template engine

Language

English || 中文

Usage

Browser

<script src="dist/tpl.js"></script>
<!--
    If it work in prodution, you may use the following instead:
    <script src="dist/tpl.bundle.js"></script>
-->
<script>
    var tpl = new Tpl()
    var data = {
        divClass: 'div',
        out: 'outer'
    }
    var htmlString = ' \
        <div class="{{ divClass }}"> \
            <p>{{ "inner" }}</p> \
        </div> \
        <p>{{ out + "p" }}</p> \
    '
    var dom = tpl.parse(htmlString).render({ data: data }).getDom()
    /**
     * dom is:
     * [
     *  <div class="div">
     *      <p>inner</p>
     *  </div>,
     *  <p>outerp</p>
     * ]
    */
</script>

CommonJS

var Tpl = require('frontend-tpl')
var tpl = new Tpl()
// some code as above

Attention
If you want to use it in node environment, you should offer a environment of DOM.
For example, you can use the jsdom module.

Tests

You can download this depository and run npm test to see the unit test.

Docs

If you want to get more information, please see API Document