With the public release of ember.js, I excitedly poured over the examples hoping to find a framework that would make Creating, Reading, Updating and Deleting (CRUD) easier. When push comes to shove, the vast majority of apps that I've worked on involve CRUD.
I want to see the following (excuse the pseudo code):
``` javascript Model
model({
validation: function(m){...}
});
```
``` javascript Controller
controller({
show: function(){...},
index: function(){...},
new: function(){...},
create: function(){...},
...
});
```
``` html Form
Will your framework help me 1) write less code, 2) get things done faster and 3) with less errors? Show me.
PS: I don't want to diminish the tremendous effort it takes to create a framework and release it, but please go the extra mile and provide some concrete CRUD examples for a single class!