An open API service indexing awesome lists of open source software.

https://github.com/dgf/crudl-control

coffeescript friendly control CRUD delegate
https://github.com/dgf/crudl-control

Last synced: over 1 year ago
JSON representation

coffeescript friendly control CRUD delegate

Awesome Lists containing this project

README

          

# CRUDL now express - a websocket CRUD delegate

lifts a [crudl-model](http://github.com/dgf/crudl-model) to the web

map = (person) -> name: person.name

personCrudl = crudl db.Person, map, (p) -> _.extend map(p), id: term.id

everyone.now.yourApp =

# use direct delegate to prevent scope
persons: personCrudl.all

# or apply nowjs scope manually
savePerson: (values, onSuccess) ->
personCrudl.update.apply @, [values.id, values, onSuccess]