restfuljs
v0.0.4
Published
Easy restful responses for APIs and ajax calls
Downloads
5
Readme
restful
quick and easy restful responses for expressjs apps
Installation
npm install restfuljs
Quick Start
add to express app middleware: app.use(require('restfuljs').response);
example uses
as direct callback to mongoose query: models.user.findById(id, res.tful);
another mongoose query callback example: user.save(res.tful);
manual call: res.tful(error, response)