I am looking for a template solution that can work on both server side (like ERB) and client side (like EJS) so I don't have to write the views twice for use in, say, both Rails and Backbone.
The first that comes to mind is Mustache. Any others?
Anyone doing this successfully ?

EDIT

I keep a compilation Here.

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

Try Mustache. (Twitter used it in their recent redesign, so they can share templates between server-side Ruby and client-side JavaScript.)

It's also available in Ruby, JavaScript, Python, Erlang, PHP, Perl, Objective-C, Java, .NET, Android, C++, Go, Lua, ooc, ActionScript, ColdFusion, Scala, Clojure, Fantom, CoffeeScript, D, and for node.js.

(Yes, I know you mentioned it in your question, but this answer has links and stuff.)

link|improve this answer
nevertheless, the Twiter info is nice – clyfe Feb 18 '11 at 16:05
feedback

You could have a look at this HAML implementation for JS (given that you're open to use HAML that is ;) ). Also the most commonly used JS templates which has been originally suggest (not sure if it has a name, actually?) by John Resig shares key elements with ERB. It's also used with underscore.js's templating functionality.

I haven't tried to achieve what you're after yet, but thought about it a few times and I'd guess that you'll encounter problems with currently existing solutions and implementation of things like e.g. loops. Just my 5 cent.

link|improve this answer
feedback

I recommend Liquid templates for Ruby and for Javascript.

link|improve this answer
feedback

Try poirot. It's a gem that makes it dead simple to reuse mustache or handlebars templates client and server side.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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