flatiron-restful-express

Use restful with flatiron and express.

Usage no npm install needed!

<script type="module">
  import flatironRestfulExpress from 'https://cdn.skypack.dev/flatiron-restful-express';
</script>

README

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);
...