Liam Kaufman

Software Developer and Entrepreneur

Examples I Want to See in JavaScript Frameworks.

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

Model
1
2
3
model({
  validation: function(m){...}
});
Controller
1
2
3
4
5
6
7
8
9
10
11
12
controller({
  show: function(){...},

  index: function(){...},

  new: function(){...},

  create: function(){...},

  ...

});
Form
1
2
3
4
<form action=''>
  <input type='text' name='firstName'>
  <input type='submit' value='submit'>
</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!

Comments