0.1.0 • Published 8 years ago

drboom-tedius v0.1.0

Weekly downloads
6
License
MIT
Repository
github
Last release
8 years ago

Dr. Boom: Seaquell

npm i drboom-tedious

Auto-cast errors from tedious into Hapi HTTP Errors.

##Example / Boilerplate

Plugin registration boilerplate:

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

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

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

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

function someHandler(request, reply) {
    mssql.query("some query", reply);
});