in reply to Javascript: Display Logic or Business Logic?

For completeness, here is the list of push-style templating systems. FWIW, these days I use Mojo's built in system again and again because it's there and it works :) For a total javascript solution express seems pretty complete, but there are certainly other options for full-stack JS.



The mantra of every experienced web application developer is the same: thou shalt separate business logic from display. Ironically, almost all template engines allow violation of this separation principle, which is the very impetus for HTML template engine development.

-- Terence Parr, "Enforcing Strict Model View Separation in Template Engines"

  • Comment on Re: Javascript: Display Logic or Business Logic?