Add createdAt and updatedAt in mongoose schema using timstamps | Mongoose Timestamp
Mongoose schemas support a timestamps option. If you set timestamps: true, Mongoose will add two properties of type Date to your schema: createdAt: a date representing when this document was createdupdatedAt: a date representing when…