Developing with MongoDB
Installation
SKILL.md
Developing with MongoDB
Quick Start
// Schema with Mongoose
import mongoose, { Schema, Document } from 'mongoose';
interface IUser extends Document {
email: string;
profile: { firstName: string; lastName: string };
createdAt: Date;
}