Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 1.03 KB

README.markdown

File metadata and controls

27 lines (15 loc) · 1.03 KB

js-model

js-model is a library that allows you to work with models in your JavaScript.

In brief

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

Documentation / download / more

For notes on getting started, persisting via REST or localStorage, using with Sammy, API documentation and download links visit the js-model docs site.

Suggestions / questions / issues / comments

Feel free to use Github issues for any of the above.

Copyright

Copyright 2010-2012 Ben Pickles. See LICENSE for details.