Iam trying to make an project using express in which i want to show data on my home page like (title, bookname etc) which in stored in mongodb data base
var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/website');
var db = mongoose.connect;
var questionSchema = mongoose.Schema({
title: {
type: String
},
description: {
type: String
}
})
const Question = new mongoose.model("Question", questionSchema);
module.exports = Question;