Answers for "TypeError: mongoose__WEBPACK_IMPORTED_MODULE_2___default.a.connect is not a function at _callee$ (db.js:11) at tryCatch (runtime.js:45)"

2

TypeError: mongoose__WEBPACK_IMPORTED_MODULE_2___default.a.connect is not a function at _callee$ (db.js:11) at tryCatch (runtime.js:45)

try {
  mongoose.connect(MONGODB_URI || 'mongodb://localhost/YOUR_DB_NAME', {
      useNewUrlParser: true,
      useUnifiedTopology: true
    }, () =>
    console.log("connected"));
} catch (error) {
  console.log("could not connect");
}
Posted by: Guest on June-05-2020
3

mongoose connect

mongoose.connect('mongodb://username:password@host:port/database?options...', {useNewUrlParser: true});
Posted by: Guest on July-09-2020

Code answers related to "TypeError: mongoose__WEBPACK_IMPORTED_MODULE_2___default.a.connect is not a function at _callee$ (db.js:11) at tryCatch (runtime.js:45)"

Code answers related to "Javascript"

Browse Popular Code Answers by Language