DEV Community

Discussion on: Help With Mongoose

 
buttercubz profile image
Erick Sosa Garcia

it's weird, I just installed mongoose and executed the same example and I don't get the warning
i'm using node 15.0.1

Thread Thread
 
cdthomp1 profile image
Cameron Thompson

I have node 14.15.1. I will restart my machine and see if that fixes it.

Thread Thread
 
cdthomp1 profile image
Cameron Thompson • Edited

I reset my machine and installed the latest version of Node. Still receiving the warning.

Thread Thread
 
esix34238932 profile image
Esix

const mongoose = require('mongoose');

const connectDB = async () => {
try {
const conn = await mongoose.connect(process.env.MONGO_URI,
{
useNewUrlParser: true,
useUnifiedTopology: true,
useCreateIndex: true,
});
console.log(MongoDB Connect: ${conn.connection.host})

} catch (err) {
    console.error(`Error: ${err.message}`);
    process.exit(1);
}
Enter fullscreen mode Exit fullscreen mode

}

module.exports = connectDB