Node.js + Joi how to display a custom error messages?

Original answer: The current way (I personally find it better) is to use .messages() (or .prefs({messages})). const Joi = require(‘@hapi/joi’); const joiSchema = Joi.object({ a: Joi.string() .min(2) .max(10) .required() .messages({ ‘string.base’: `”a” should be a type of ‘text’`, ‘string.empty’: `”a” cannot be an empty field`, ‘string.min’: `”a” should have a minimum length of {#limit}`, ‘any.required’: … Read more

Joi Validations: If object matches the schema validate against it from multiple items

There are some typos in your files and validators. First of Joi.array is a function and needs to be called as one. // This is incorrect data2: Joi.array … additional: Joi.array // Should be changed to this where array is invoked as a function data2: Joi.array() … additional: Joi.array() Additionally, I’ve added a fourth validator … Read more