Email

The email field is a required field of type String, which must match a valid email format and must also be unique in the user collection.

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'},

Get Full-Stack React Projects 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.