Answers for "mongoose express js"

10

how to install mongoose

$ npm install mongoose
Posted by: Guest on May-18-2020
1

node js + mongoose

await mongoose.connect('mongodb://localhost/my_database', {  useNewUrlParser: true,  useUnifiedTopology: true});
Posted by: Guest on August-02-2020
1

node js + mongoose

const db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', function() {
  // we're connected!
});
Posted by: Guest on August-02-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language