I’m trying to connect to my MongoDB using Mongoose and it gives me the following error.
const { mongoose } = require('mongoose'); const db = 'dburl.com/db' mongoose.connect(db, { useNewUrlParser: true }) .then(() => console.log('MongoDB Connected')) .catch((err) => console.log(err));
I get this Error
mongoose.connect(db, { useNewUrlParser: true }) ^ TypeError: Cannot read property 'connect' of undefined
Advertisement
Answer
You should change 2 things:
- Change
{ mongoose }
withmongoose
- Remove
useNewUrlParser
option. New version of Mongoose does not accept it as option and it will throw an error.
const mongoose = require('mongoose'); const db = 'dburl.com/db' mongoose.connect(db) .then(() => console.log('MongoDB Connected')) .catch((err) => console.log(err));