You do:
var hapiRouteController = function(request, reply) {
reply(Boom.badRequest('The email address looks funny.', { code: 'InvalidEmail' }));
}
You get:
{
statusCode: 400, // thanks to boom
error: 'Bad Request', // thanks to boom
message: 'The email address looks funny.', // thanks to boom
code: 'InvalidEmail' // thanks to hapi-boom-codes
}
$ npm install --save hapi-boom-codes
First, register the plugin.
Then, put a code
property on the data
param when calling any of the Boom methods.
Boom.badRequest([message], { code: 'SomethingBadHappened' });
Boom.forbidden([message], { code: 'NoDirtyBusiness' });
- Initial commit
Copyright (c) 2015 Kamil Waheed. Licensed under the MIT license.