// import the necessary modulesvarmongoose=require('../../lib');varSchema=mongoose.Schema;// create an export function to encapsulate the model creationmodule.exports=function(){// define schemavarPersonSchema=newSchema({name:String,age:Number,birthday:Date,gender:String});mongoose.model('Person',PersonSchema);};