英雄
Hero是一个方便,快速且功能强大的go模板引擎,它会预先编译html模板以进行代码。 它已在生产环境中。
产品特点
高性能。
易于使用。
强大。 模板支持Extend和Include 。
文件更改时自动编译。
性能
Hero是基准测试中目前已知的模板引擎中使用最快和最少的内存。 图表数据来自 。 您可以从该项目中找到更多详细信息和基准。
安装
go get github.com/shiyanhui/hero/hero
# Hero needs `goimports` to format the generated codes.
go get golang.org/x/tools/cmd/goimports
用法
hero [options]
-source string
the html template file or dir (default " ./ " )
-dest string
generated golang files dir, it will be the same with source if not set
1