Iterate over RAML resources and generate a middleware router.
npm install osprey-resources --save
const express = require('express')
const resources = require('osprey-resources')
const utils = require('./utils')
const app = express()
// Array.<webapi-parser.EndPoint>
const endPoints = utils.getEndPoints()
app.use(resources(
endPoints,
function (method, path) {
return function (req, res, next) {
res.end('hello, world!')
}
}
))
The resources function accepts two arguments. The array of EndPoint
objects from webapi-parser model and a function that will generate the route for that path. Return null
if the route should not be used.
MIT license