UNPKG

express-api-cli

Version:

Cli tool for generating an express project. Instead of wasting extra time creating your project structure, start building right away

15 lines (12 loc) 195 B
import { Schema, model } from 'mongoose'; const userSchema = new Schema( { name: { type: String } }, { timestamps: true } ); export default model('User', userSchema);