mwunsch / handlebars.scala

A Scala implementation of the Handlebars templating language (a superset of Mustache).
Apache License 2.0
112 stars 40 forks source link

Type safe compilation of templates #40

Open chrhicks opened 10 years ago

chrhicks commented 10 years ago

handlebars.scala is rather slow in environments where performance is critical. The default behavior is to use reflection on the fly to traverse the context given to the template. It would be great if we knew the type of the context before hand we could resolve errors at compile time and make rendering really fast!

timcharper commented 8 years ago

Resolved somewhat with the json bindings?