Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any JavaScript MVC frameworks that have no external dependencies?

Does anyone know of a MVC framework in JavaScript that is free of other library dependencies? I'm thinking along the lines of backbone.s or spine.js both of which CLAIM to have no dependancies but then their code clearly uses jQuery or Zepto functions. I'm after one that uses native JavaScript only and therefore can be used with any framework (jQuery, MooTools, Dojo OR NO FRAMEWORK)

like image 431
rgb Avatar asked May 04 '11 23:05

rgb


1 Answers

You may want to look into Knockout, it's not MVC - it's MVVM and solved most of my complex ui code in javascript. Knockout is like the glue between the data, events and the widgets - it helps write clean and easy to maintain JS interfaces.

Last but not least it is not tied to any other library, pure JS.

like image 153
Olivier Refalo Avatar answered Sep 28 '22 00:09

Olivier Refalo