Skip to content

Instantly share code, notes, and snippets.

@myndzi
Created May 19, 2017 01:03
Show Gist options
  • Save myndzi/a926583155aa901a3ac95d1797874dab to your computer and use it in GitHub Desktop.
Save myndzi/a926583155aa901a3ac95d1797874dab to your computer and use it in GitHub Desktop.
const Joi = require('joi');
const schema = {
a: Joi.number(),
b: Joi.number(),
};
const value = {
a: 'AAA',
b: "BBB"
};
const result = Joi.validate(value, schema, { abortEarly: false });
console.log(require('util').inspect(result.error.details));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment