vote up 1 vote down star
4

Do you have experience with a Javascript templating engine, one that is stable, easy to use and has good performance?

I need to do apply the same template many times for different data. I prefer to download the template itself once (and have it cached) rather than processing the template on the server. Also, this way the template itself would be a static resource more easily cached in the server side too.

flag

3 Answers

vote up 1 vote down check

I've been looking at John Resig's JavaScript Micro Templating thingie, and it looks very interesting. Looks like it's simple, does the job, and is very easy to use.

As far as caching is concerned, it's just a matter of setting the right response headers in your web server, no?

link|flag
"it's just a matter of setting the right response headers in your web server, no?" We have "global" tags like {{ContactTelephoneNo}} which are substituted ServerSide (and cached) rather than sending the data to Client for template-merge. Cached Template marked stale when ContactTelephoneNo changes – Kristen Feb 16 at 12:45
Do you mean that you want to ensure that the result of a template substitution should be retained in cache until such time that values in the substitution change? That should be a fairly straightforward thing to bolt on to Resig's templating engine. – Rakesh Pai Feb 18 at 15:38
vote up 0 vote down

Pure Javascript with JSP-like syntax:

http://blog.markturansky.com/BetterJavascriptTemplates.html

link|flag
vote up 0 vote down

Check out PURE javascript templating engine. It's quite easy to use and reasonably light weight.

link|flag

Your Answer

Get an OpenID
or

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