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).
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...