Handles all boiler plate required to implement a REST API service
npm install rapify


``javascript
const rapify = require('rapify');
rapify.bootstrap({
onStart: () => console.log('API server ready...'),
port: 3000,
bodyParser: true,
controllers: [
{
prefix: '/users',
crudInterface: rapify.crudInterfaces.memory(),
restify: {
create: true,
read: true,
update: true,
delete: true,
paginate: true,
},
}
],
});
`
`bash`install express if you haven't already
npm install express
Now install rapify
`bash`
npm install rapify
`bash
cd examples/middleware
node index.js
`
`bash``
npm install
npm test