Answers for "connect to mongodb atlas using node.js and mongoose"

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

mongodb atlas node js mongoose

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 May-15-2021

Code answers related to "connect to mongodb atlas using node.js and mongoose"

Browse Popular Code Answers by Language