Skip to content

Instantly share code, notes, and snippets.

@georgioupanayiotis
Created March 15, 2017 10:41
Show Gist options
  • Save georgioupanayiotis/d2f432d53ab49e82185ef7d6abb6b735 to your computer and use it in GitHub Desktop.
Save georgioupanayiotis/d2f432d53ab49e82185ef7d6abb6b735 to your computer and use it in GitHub Desktop.
Example - Simple Joi Schema
var stringSchema = Joi.string().min(3).max(30);
Joi.validate(‘valid string’, stringSchema,
function(error,val) {
//do stuff
});
@georgioupanayiotis
Copy link
Author

joi simple example

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment