Package Exports
- mongoose-unique-validator
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mongoose-unique-validator) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
mongoose-unique-validator
mongoose-unique-validator is a plugin which adds pre-save validation for unique fields within a Mongoose schema.
This makes error handling much easier, since you will get a Mongoose validation error when you attempt to violate a unique constraint, rather than an E11000 error from MongoDB.
Usage
npm install mongoose-unique-validatorSimply apply the plugin to your schema and pass in your mongoose instance:
var mongoose = require('mongoose');
var uniqueValidator = require('mongoose-unique-validator');
var mySchema = mongoose.Schema(/* put your schema definition here */);
mySchema.plugin(uniqueValidator, { mongoose: mongoose });Example
Let’s say you have a user schema. You can easily add validation for the unique constraints in this schema by applying
the uniqueValidator plugin to your user schema:
var mongoose = require('mongoose');
var uniqueValidator = require('mongoose-unique-validator');
// Define your schema as normal.
var userSchema = mongoose.Schema({
username: { type: String, required: true, unique: true },
email: { type: String, index: true, unique: true, required: true },
password: { type: String, required: true }
});
// Apply the uniqueValidator plugin to userSchema.
userSchema.plugin(uniqueValidator, { mongoose: mongoose });Now when you try to save a user, the unique validator will check for duplicate database entries and report them just like any other validation error:
var user = new User({ username: 'JohnSmith', email: 'john.smith@gmail.com', password: 'j0hnNYb0i' });
user.save(function (err) {
console.log(err);
});{
message: 'Validation failed',
name: 'ValidationError',
errors: {
username: {
message: 'Validator "unique" failed for path username with value `JohnSmith`',
name: 'ValidatorError',
path: 'username',
type: 'unique',
value: 'JohnSmith'
}
}
}