0.1.0 • Published 11 years ago

flatiron-restful-express v0.1.0

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

flatiron-restful-express

The purpose of this flatiron plugin is to integrate restful with express embedded in a flatiron application.

Install

npm install flatiron-restful-express

Usage

The plugin installs a tiny middleware which acts like the static provided by express. It serves all resources provided in app.resources and goes on to the next middleware if a resource cannot be routed.

var flatiron = require('flatiron'),
    restfulExpress = require('restful-express
    app = flatiron.app;
app.use(flatiron.plugins.resourceful);
app.resources.User = app.define('user');

/* Server user as restful resource. */

app.use(restfulExpress);
...