# mini-tpl **Repository Path**: uyghurjava/mini-tpl ## Basic Information - **Project Name**: mini-tpl - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-09-14 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # mini-tpl [![NPM version](https://img.shields.io/npm/v/mini-tpl.svg)](https://www.npmjs.com/package/mini-tpl) A simple template engine,just several rows. 超简单的模板引擎,只有几十行。 [https://github.com/shalldie/mini-tpl](https://github.com/shalldie/mini-tpl) ## About * Small size, **0.74KB** of mini-tpl.min.js * Support from **IE6**. * The syntax same as **ejs***,you will get it easy if you've written jsp or asp/asp.net . *** * 超小的体积,压缩后的min版本只有 **0.74KB** * **IE6** 就能用 0_o * **ejs** 语法,如果你写过jsp、asp、webform之类的,可以直接上手 ## How to get it If you use npm or yarn. npm install mini-tpl or yarn add mini-tpl Another way,include the script in browser.(build/mini-tpl.min.js) ## How to use The syntax same as [ejs](https://github.com/tj/ejs). 跟[ejs](https://github.com/tj/ejs)一样的语法。 ## Example In node: ```js // es6 module , typescript import tpl from 'mini-tpl'; // nodejs // const tpl = require('mini-tpl'); const content = ` `; const data = [{ name: 'tom', age: 12 }, { name: 'lily', age: 24 }, { name: 'lucy', age: 55 }]; console.log(tpl(content, data)); ``` result: In browser: ```html
``` ## Who use it 东方头条、携程