Let's get the schema going! For more information about creating Mongoose schemas, check out the documentation here.
mongoose = require "mongoose"
{Schema} = mongoose
conf = require "./conf"Connect to the database
mongoose.connect conf.dbCreate the schema.
userSchema = new Schema
name: String
age: Number
food: StringCreate the models
User = mongoose.model 'User', userSchemaExport the schema
module.exports =
User: User