- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/zhiyu/jes
- 软件文档: https://github.com/zhiyu/jes
- 官方下载: https://github.com/zhiyu/jes
软件介绍
javascript模板引擎,可用于nodejs和web端。运行代码:
jes.renderFile('layout.jes',
{
title:'JES',
body:'Welcome to jes!',
copyright:'copyright 2012'
},
function(err, data){
if(err){
console.log(err);
}else{
console.log(data);
}
}
);
