Lorenzo Bolla

Javascript templating benchmark

There are many popular libraries to do templating in Javascript.

The most popular are:

I decided to benchmark them, so I created a simple "hello world" test.

As usual, the results are interesting. Here are, on my box:

Firefox 3.6Chrome 11.0Safari 5.0
jQuery Template297ms138ms113ms
Pure309ms43ms36ms
Resig309ms41ms41ms
Trimpath15ms5ms6ms
JQote27ms1ms6ms

A part from the obvious result that Firefox is the slowest browser of all, I'm astonished by the excellent performance of JQote2!

#Programming #Javascript