
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Better error messages for Hapi.js Joi validation
Joi provides awesome schema validation, but the error messages returned are not user-friendly. This package returns a more user-friendly version of Joi's default response and allows for custom error messages.
Default Joi Response
{
"statusCode": 400,
"error": "Bad Request",
"message": "child \"data\" fails because [child \"name\" fails because [\"name\" is not allowed to be empty], child \"email\" fails because [\"email\" must be a valid email]]",
"validation": {
"source": "payload",
"keys": [
"data.name",
"data.email"
]
}
}
Example Relish Response
{
"statusCode": 400,
"error": "Bad Request",
"message": "\"name\" is not allowed to be empty, \"email\" must be a valid email",
"validation": {
"source": "payload",
"errors": [
{
"key": "name",
"path": "data.name",
"message": "\"name\" is not allowed to be empty",
"type": "any",
"constraint": "required"
},
{
"key": "email",
"path": "data.email",
"message": "\"email\" must be a valid email",
"type": "string",
"constraint": "email"
}
]
}
}
npm install relish --save
First load and initialize the module
// load the package and set custom message options
const Relish = require('relish')({
messages: {
'data.name': 'Please enter your full name'
}
});
Once initialized, this package exposes a custom failAction
handler that can be used in your Hapi.js Route Options.
// call the failAction handler in your route options
server.route({
method: 'POST',
path: '/',
config: {
validate: {
// set a custom failAction handler
failAction: Relish.failAction,
payload: {
data: Joi.object({
name: Joi.string().required(),
email: Joi.string().email()
})
}
}
},
handler: (request, h) => h.response()
});
You can apply this module to all routes by setting the failAction in your server options.
Hapi.server({
// ... other server options
routes: {
validate: {
failAction: Relish.failAction
}
}
});
Below are the compatible versions of Relish for Hapi and Joi.
Relish Version | Hapi Version | Joi Version |
---|---|---|
1.x | <= 16.6.0 | <= 10.x |
2.x | >= 16.6.1, < 17.x | >= 11.x |
3.x | >= 17.x | >= 11.x |
See the API Documentation for reference.
FAQs
Better error messages for Hapi.js Joi validation
The npm package relish receives a total of 116 weekly downloads. As such, relish popularity was classified as not popular.
We found that relish demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.