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;
}
Installs
GitHub Stars
4
First Seen
Developing with MongoDB — doanchienthangdev/omgkit