Is there any documentation on Mustache best practices when using on the server (with rails) and on the client (with javascript)?

# hello_world.mustache
Hello {{planet}}

# some other file
<%
hello_world_template = File.read(File.dirname(__FILE__) + "/hello_world.mustache")
%>

<script id="hello_world_template" type="text/x-jquery-tmpl"> 
    <%= hello_world_template %>
</script>

<script>
    // $.mustache = using mustache.js and a jquery mustache wrapper 
    // search on "Shameless port of a shameless port"
    document.write($.mustache($("#hello_world_template").html(), { "planet" : "World!" }));
</script>

<%= Mustache.render(hello_world_template, :planet => "World!") %>

The above isn't scalable. I'd prefer not to make my own engine for this.

Is there a more complete templating engine that allows reuse of templates on the server and on the client?

Additionally, one that accounts for nested templates on the server and the client?

link|improve this question

60% accept rate
feedback

2 Answers

up vote 3 down vote accepted

There is Poirot available: Mustache + Rails 3.

link|improve this answer
2  
I'll check this out, thanks. I've also seen something called Isotope. reading through that now. devign.me/… – Mark Peterson Aug 12 '11 at 20:55
seems fine too. – apneadiving Aug 12 '11 at 21:03
feedback

not familiar with the ruby on rails syntax but here is my take:

a) Why do you want to generate the markup on the server side at all (if at all that is an option) always send in json data to the client and let js mustache engine deal with it

b) if you still want to keep your server side rendering engine, then what you can do is keep all your mustache templates in a folder write a script that you execute during your build (or equivalent in ruby on rails) that combines all the templates into a nicely scoped JS file with the right naming conventions.

Something as follows:

var MUSTACHE_TEMPLATES= MUSTACHE_TEMPLATES || (function(){
var template1= "<big ass template>";
var template2="<small template>";

return
{
template1: template1,
template2: template2
}
}());

What do you think of that approach? Now you have your templates living in a single location and you also get the advantages of the js file being cached

link|improve this answer
nice approach, +1 – apneadiving Aug 12 '11 at 20:21
I'd rather use the <script type="text/x-jquery-tmpl"> approach as it's more explicit and easier for non-Javascript gurus to grasp. – Mark Peterson Aug 12 '11 at 20:52
4  
And I want to render on both the server and the client because I want full html pages for SEO sake, and people are simply used to getting a full webpage load. Basically, this isn't an application, it's a website enhanced with Javascript. – Mark Peterson Aug 12 '11 at 20:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.