Skip to content

Instantly share code, notes, and snippets.

@Prinzhorn
Created September 19, 2012 08:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Prinzhorn/3748391 to your computer and use it in GitHub Desktop.
Save Prinzhorn/3748391 to your computer and use it in GitHub Desktop.
Requirements for a MV* framework for small projects

I just want this a bit cleaner than using plain jQuery.

  • Dynamic view updates like Knockout/o_O
  • With the template syntax of Angular JS (this data-bind="text: bacon" is ridiculous)
  • Models with remote connection. E.g. I want to have a User object with CRUD connection to the server (Angular seems to have this with $resource, but documentation is outdated and I can't get it to work)

I don't need routing. I just want to have clean underlying data connected to the server which updates the view.

Maybe someone can recommend one or maybe two frameworks which solve this. One for the object stuff and another which can handle these objects and updates the view.

Note: I took a look at every single framework on the todomvc list (labs as well).

@Prinzhorn
Copy link
Author

Maybe I'll give another shot at Ember.js. But for example the server connection stuff for models https://github.com/emberjs/data is still beta...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment