drboom-gatepost

An extension for drboom to catch errors from gatepost.

Usage no npm install needed!

<script type="module">
  import drboomGatepost from 'https://cdn.skypack.dev/drboom-gatepost';
</script>

README

Dr. Boom: Gatepost

npm i drboom-gatepost

Auto-cast errors from Gatepost into Hapi HTTP Errors.

Example / Boilerplate

Plugin registration boilerplate:

var hapi = require('hapi');
var config = require('./config.json');
var Boom = require('boom');
var Gatepost = require('gatepost')(config.db);

var server = new hapi.Server();
server.connection(config);

server.register([{
    register: require('drboom'), 
    options: {
        plugins: [require('drboom-gatpost')({Gatepost: Gatepost, Boom: Boom})]
    },
}, function (err) {
    server.log(['startup'], 'Loaded pgboom plugin');
    server.start(function (err) {
        //...
    }
});

Now, you can pass your seaquell errors right on through to hapi reply!

function someHandler(request, reply) {
    SomeGatepostModel.method(reply);
});