rest - restful backend framework for backbone.js and co -
what's left backend framework in order provide restful service frontend application based on backbone.js or other full mvc frontend framework?
i can think of
- data
- storage
- versioning
- validation
- authorization
- (refential) integrity
- user authentication
- event notification client
what else?
a few additional things (though considered parts of things you've mentioned in question):
acting intermediary
as long have domain restrictions on ajax, necessary offer proxy enable mashups. once fix problem, though, there other cases intermediary. take, example, twitter's streaming api. twitter allows 1 stream per api key, backend app have consumer sends search results clients.
search
bandwidth , client processing capabilities both limit degree search can done on client.
jobs
background or batch job processing best done on server. restful practice post
/jobs
, 202 accepted
content-location
header pointing running job. subsequents job return status and, if it's complete, link results.
Comments
Post a Comment