DEV Community

Discussion on: Help With Mongoose

Collapse
 
buttercubz profile image
Erick Sosa Garcia

try with this:

const mongoose = require('mongoose');

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

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

module.exports = connectDB
Enter fullscreen mode Exit fullscreen mode
Collapse
 
cdthomp1 profile image
Cameron Thompson

I get this warning

(node:781) DeprecationWarning: current URL string parser is deprecated, and will be removed in a future version. To use the new parser, pass option { useNewUrlParser: true } to MongoClient.connect.
(Use `node --trace-deprecation ...` to show where the warning was created)
(node:781) DeprecationWarning: current Server Discovery and Monitoring engine is deprecated, and will be removed in a future version. To use the new Server Discover and Monitoring engine, pass option { useUnifiedTopology: true } to the MongoClient constructor.
MongoDB Connect: spydrwebdev-shard-00-00.zzkco.mongodb.net
Enter fullscreen mode Exit fullscreen mode
Collapse
 
buttercubz profile image
Erick Sosa Garcia

what version of mongoose are you using?

Thread Thread
 
cdthomp1 profile image
Cameron Thompson

I am using version 5.11.9

Thread Thread
 
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