Is there a JavaScript MVC (micro-)framework? [closed] Is there a JavaScript MVC (micro-)framework? [closed] javascript javascript

Is there a JavaScript MVC (micro-)framework? [closed]


Backbone is a great light-weight framework. Give it a try:http://backbonejs.org/


JavaScriptMVC is an excellent solution. It's everything is a plugin approach enables you to select only the features you need. As of 2.0, it's based on jQuery.

On progressively enhancing your website, that's left up to the user as JMVC provides just a middle layer for development - it's up to you to make that design choice yourself.

However, JavaScriptMVC is simply the best general purpose JavaScriptMVC library because of its powerful event delegation based controllers.

Event delegation lets you escape having to attach event handlers, and simply create rules for your page.

Finally, JMVC is much more than a MVC architecture. It has all parts of the development cycle covered with:

  • Code Generators
  • Selenium and Env.js integrated testing
  • Documentation Engine
  • Automatic Concat+Compress
  • Error detection and reporting


Spine has an API similar to Backbone but it's a lot smaller. It features prototypal inheritance.