UNPKG

@mahjongg/mern-mvc

Version:

A CLI that will build a MERN stack application using create-react-app

12 lines (9 loc) 239 B
module.exports = `const mongoose = require('mongoose'); const Schema = mongoose.Schema; const personSchema = new Schema({ name: String, age: Number, isTall: Boolean }); module.exports = mongoose.model('Person', personSchema);`;