Answers for "mongoose get connection object from another cile"

1

mongoose setup

// getting-started.js
const mongoose = require('mongoose');
mongoose.connect("mongodb://localhost:27017/name", { useUnifiedTopology: true, useNewUrlParser: true });
Posted by: Guest on July-09-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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language