I need to pick a Mustache rendering engine for a Scala project of mine. Seems like the only two choices are Mustache-Java and Scalate? Are there any comparisons? Which one is the more stable/performant of the two?
feedback
|
|
I was using mustache as part of scalatra-scalate. This is the only sensible choice for me as I'm already invested in Scalatra. Given the choice, I'd try mustache-java thoroughly. The Scalate engines are (still?) somewhat quirky and immature. A few examples I ran into:
If you're not doing complex things mustache works fine though, and Scalate adds some nifty features like default templates and such that might help you. | ||||
|
feedback
|
|
A benefit of Mustache-Java is that Java compiles very quickly relative to Scala. | |||||||
feedback
|
|
I just went through this same process (Mustache Scalate or Mustache Java). I ended up going with Mustache Java, and it's working fine. Why Mustache Java? Because all I wanted was Mustache templates. Scalate has more than just this support, and I didn't want to add more "stuff" to my code base but only use part of its functionality. | |||
|
feedback
|