Answers for "connect to collection mongoose"

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
0

connect to existing collection mongoose

new Schema({ url: String, text: String, id: Number}, 
           { collection : 'question' });   // collection name
Posted by: Guest on June-13-2020

Browse Popular Code Answers by Language