Answers for "mongoose atlas connection"

3

connect mongoose to atlas

const mongoAtlasUri =
  "mongodb+srv://[email protected]:[email protected]/DB_NAme?retryWrites=true&w=majority";

try {
  // Connect to the MongoDB cluster
  mongoose.connect(
    mongoAtlasUri,
    { useNewUrlParser: true, useUnifiedTopology: true },
    () => console.log(" Mongoose is connected")
  );
} catch (e) {
  console.log("could not connect");
}
Posted by: Guest on March-15-2021
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
3

mongoose connect to atlas

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

Code answers related to "mongoose atlas connection"

Browse Popular Code Answers by Language