Simple and flexible REST route handlers for your Mongoose models.
var handler = new Suricate(MongooseModel);
hapi.route([
method: 'POST',
path: '/route',
handler: handler.create
]);
Run npm install --save hapi-suricate
on your project folder.
Bind .create
, .find
, .findById
, .update
and .remove
directly to your routes:
var Hapi = require('hapi');
var mongoose = require('mongoose');
var Suricate = require('hapi-suricate');
// Define your models
var Schema = new mongoose.Schema({ });
var Model = mongoose.model('Model', Schema);
// Instantiate Hapi server
var hapi = new Hapi.Server();
var handler = new Suricate(Model);
// Define routes
hapi.route([
{
method: 'POST',
path: '/model',
handler: handler.create
},
{
method: 'GET',
path: '/model',
handler: handler.find
},
{
method: 'GET',
path: '/model/{id}',
handler: handler.findById
},
{
method: 'PUT',
path: '/model/{id}',
handler: handler.update
},
{
method: 'DELETE',
path: '/model/{id}',
handler: handler.remove
}
]);
This is useful when working with subresources.
var Hapi = require('hapi');
var mongoose = require('mongoose');
var Suricate = require('hapi-suricate');
// Define your models
var Schema = new mongoose.Schema({ });
var Model = mongoose.model('Model', Schema);
// Instantiate Hapi server
var hapi = new Hapi.Server();
var handler = new Suricate(Model);
// Define routes
hapi.route([
{
method: 'POST',
path: '/model',
handler: handler.create
},
{
method: 'GET',
path: '/model',
handler: handler.find
},
{
method: 'GET',
path: '/model/{id}',
handler: handler.findById
},
{
method: 'PUT',
path: '/model/{id}',
handler: handler.update
},
{
method: 'DELETE',
path: '/model/{id}',
handler: handler.remove
},
{
methods: 'GET',
path: '/model/{id}/subSchema/{subId}',
handler: function(request, reply) {
handler.findById(request, reply, function(err, doc) {
var subDoc = doc.subSchema.id(request.params.subId);
reply(subDoc);
});
}
},
{
method: 'POST',
path: '/model/{id}/subSchema',
handler: function(request, reply) {
var payload = {
subSchema: request.payload
};
request.payload = payload;
handler.update(request, reply, function(err, doc) {
reply(doc.subSchema);
});
}
},
{
method: 'PUT',
path: '/model/{id}/subSchema/{subId}',
handler: function(request, reply) {
handler.findById(request, reply, function(err, doc) {
var subSchema = doc.subSchema.id(request.params.subId);
subSchema.title = request.payload.title;
doc.save(function(err, doc) {
reply(doc.subSchema);
});
});
}
},
{
method: 'DELETE',
path: '/model/{id}/subSchema/{subId}',
handler: function(request, reply) {
handler.findById(request, reply, function(err, doc) {
var subSchema = doc.subSchema.id(request.params.subId);
subSchema.remove();
doc.save(function(err, doc) {
reply(doc.subSchema);
});
});
}
}
]);
Despite Mockgoose intercepts Mongoose commands and keep MongoDb instance untouch, you should have a local MongoDb instance running on port 27017 to be able to run the test.
- Clone repository
git clone https://github.com/viniciusbo/hapi-suricate.git && cd hapi-suricate
- Run
npm install
- And then
npm test