Answers for "mongoose get data from atlas connection"

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 "mongoose get data from atlas connection"

Browse Popular Code Answers by Language