Answers for "mongodb connection with mongoose"

8

mongoose connect

import mongoose from 'mongoose'

export const connectDb = async () => {
  try {
    await mongoose.connect('mongodb://localhost:27017/test', {
      useNewUrlParser: true,
      useUnifiedTopology: true,
      useCreateIndex: true,
    })
  } catch (error) {
    console.log(error.message)
  }
}
Posted by: Guest on April-12-2021
1

mongoose connect

mongoose.connect('mongodb://localhost:27017/test', {
  useMongoClient: true,
  connectTimeoutMS: 1000
})
Posted by: Guest on August-07-2020
2

mongoose connect to URL of atals

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

Code answers related to "mongodb connection with mongoose"

Browse Popular Code Answers by Language