April 2020
Intermediate to advanced
716 pages
18h 55m
English
The email field is a required field of the String type.
mern-skeleton/server/models/user.model.js:
email: { type: String, trim: true, unique: 'Email already exists', match: [/.+\@.+\..+/, 'Please fill a valid email address'], required: 'Email is required'},
The value to be stored in this email field must have a valid email format and must also be unique in the user collection.
Read now
Unlock full access