Doing it your way – create custom validation

Mongoose offers a number of different ways to create custom validators.

Single function – no custom error message

If you only need one piece of validation for a given data item, you can simply specify a function and return true if the validation is passed, and false if it fails.

For example, if we want our usernames to be at least five characters long, we can create a function like the following:

var lengthValidator = function(val) {
  if (val && val.length >= 5){
    return true;
  }
  return false;
};

The function is then referenced in our schema using the validate key:

name: {type: String, required: true, validate: lengthValidator }

This is a very quick and easy way of adding custom validation. It is fine if you ...

Get Mongoose for Application Development now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.