Hacker News new | ask | show | jobs
by DanielStraight 5856 days ago
This might be worth looking into:

http://beebole.com/pure/

I haven't used it in production, but I've found it interesting nonetheless.

1 comments

The big difference PURE has with other templating engine is the total separation between the HTML representation and the JS logic.

As a result the JS code is live at rendering time and not stringified, allowing to pass functions as parameters and closures.

As the authors of the lib, we use it in production and are very satisfied of the speed. Some prominent newspapers here in Belgium are using it as well for some parts of their sites.

Thanks for the link.