Rust templating with Handlebars.
Warning: This project, like rust, is in its early stage. Breaking changes are constantly introduced.
For information about handlebars, you will go to handlebars.js.
It's my favorite templating tool by far. I used it in Delicious.com as javascript-side template in 2013. Also I maintained a Clojure wrapper for Handlebars.java, hbs. And you may notice the close relationship between Ember.js and Rust community, handlebars is the default templating language of Ember.js framework, which powers crates.io.
Reasons I prefer Handlebars:
Handlebars provides:
>
), partial
and block
Limitations:
ToJson
-able, so we can render it.Check examples in the source. The example shows you how to:
Handlebars
and register the template from filesHelperDef
, and register itToJson
-able.Run cargo run --example render
to see results.
(or RUST_LOG=INFO cargo run --example render
) for logging output.
Handlebars is created to work with other web framework like Iron. You can easily integrate Handlebars as a middileware. Checkout feature/iron branch (will be moved to a standalone project) examples/iron.rs for how to.
Run cargo run --example iron
and visit http://localhost:3000/ to see
results.
I will eventually make this middleware a standalone module, with directory scan and auto reload support. But currently it's still difficult to get iron compiled, so this example is placed in a separated branch.
MIT, of course.
Ning Sun (sunng@about.me)