js-model is a library that allows you to work with models in your JavaScript.
Declare a model class:
var Todo = Model("todo")
Now create and manipulate model instances:
var todo = new Todo({ text: "do it" })
todo.attr("when", "now")
todo.save()
For notes on getting started, persisting via REST or localStorage, using with Sammy, API documentation and download links visit the js-model docs site.
Feel free to use Github issues for any of the above.
Copyright 2010-2012 Ben Pickles. See LICENSE for details.