Answers for "connect mongo atlas through mongoose"

8

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
0

mongoose connect to mongodb

// local conecation

const mongoose = require("mongoose");

mongoose
  .connect("mongodb://localhost:27017/testdb")
  .then(() => console.log("Connected to MongoDB..."))
  .catch((err) => console.error("Could not connect to MongoDB...", err));
Posted by: Guest on November-13-2021

Code answers related to "connect mongo atlas through mongoose"

Browse Popular Code Answers by Language