Q:

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

mongoose.connect('mongodb://username:password@host:port/database?options...', {useNewUrlParser: true});
0
try {
  mongoose.connect(MONGODB_URI || 'mongodb://localhost/YOUR_DB_NAME', {
      useNewUrlParser: true,
      useUnifiedTopology: true
    }, () =>
    console.log("connected"));
} catch (error) {
  console.log("could not connect");
}
1

New to Communities?

Join the community