I'm learning backbone.js for a Rails 3 application I'm working on. Backbone uses underscore which, I believe, has its own template engine built in.

I've read good things about mustache but was wondering if I should consider using it instead of the built in template engine of underscore?

What are your thoughts?

Thanks

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

I am about halfway through my first enterprise level backbone app. I am currently using underscores built in templates because when I started the way I had learned was with underscore.. I don't necessarily have any problem with them. All of the templating solutions are pretty straight forward.

I have since looked at a few of the other solutions and am contemplating switching, but only because I think some of the other solutions look cleaner. Also some of the solutions have a tad bit more functionality.

I like mustache because of its shorter syntax. Looks cleaner. But I if I do switch I think I'm going to go with Handlebars.js.

Handlebars has the same short syntax, plus a ton of other features such as custom helper methods and setting object context inside your template. Check it out here. If I had known about handlebars at the beginning of my project I probably would have jumped on it for sure.

I wouldn't worry so much about adding another dependency as others have mentioned. Backbone apps done right will run lightning fast anyways. :D

If you have any other questions let me know. I've been really enjoying backbone so I'm trying to watch the tagged posts. But seriously. Handlebars looks legit.

EDIT:

I also meant to add that the documentation for handlebars looks way more legit than underscores...

link|improve this answer
+1 for the remark on documentation, underscores documentation is worse than many other engines. – Sander Jan 10 at 17:24
+1 for the mention of Handlebars.js. I will definitely check that out! BTW, is there any other coders out there wanting to grow a handlebar mustache now? – cbmeeks Jan 10 at 20:42
Thanks again. Not only did you have a good answer, but you pointed me to an alternative I never heard of. – cbmeeks Jan 11 at 17:42
feedback

The biggest con I can think of is that you're adding yet another library to do something your dependencies already do. If syntax is your biggest concern the following snippet will tell underscore to use a similar syntax.

_.templateSettings = {
  evaluate : /\{\[([\s\S]+?)\]\}/g,
  interpolate : /\{\{([\s\S]+?)\}\}/g
};
link|improve this answer
are there no other big differences between the two engines? like structure wise or even functionality like 1 can only do variables in text, while the other supports looping or nested templates or anything? – Sander Jan 10 at 16:57
Main difference I am aware of is that Mustache uses language independent syntax and has implementations in multiple languages so you can use the templates in the front-end and back-end. – JaredMcAteer Jan 10 at 17:01
feedback

Your Answer

 
or
required, but never shown

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