Answers for "connect mongo with mongoose to our app"

2

connecting to mongoDB using mongoose

//Import the mongoose module
var mongoose = require('mongoose');

//Set up default mongoose connection
var mongoDB = 'mongodb://127.0.0.1/my_database';
mongoose.connect(mongoDB, {useNewUrlParser: true, useUnifiedTopology: true});

//Get the default connection
var db = mongoose.connection;

//Bind connection to error event (to get notification of connection errors)
db.on('error', console.error.bind(console, 'MongoDB connection error:'));
Posted by: Guest on May-05-2021

Code answers related to "connect mongo with mongoose to our app"

Browse Popular Code Answers by Language