What is crud-model.js ?
crud-model.js is a library which allows you to make any JavaScript type CRUD-able, which means you'll be able to call CRUD methods on it such as MyType.readAll() or myInstance.create(). Those methods will then make the underlying desired HTTP request via AJAX.
crud-model.js can be used in a browser or via node.
Getting started
- Start by reading how to install the module and include it in your project, or build it by yourself if you prefer to
- Here's some usage examples
- See the API Reference for more details
- If you plan to modify this lib to fit your needs, you may want to read how to run units tests
Read more in the wiki.