Answers for "mongodb with mongoose"

10

how to install mongoose

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

node js connect to mongodb using mongoose

//connect with mongodb
mongoose.connect('mongodb://localhost:27017/your_db_name', {useNewUrlParser: true});
//you can also specify with user and pass
mongoose.connect('mongodb://username:password@host:port/database?options...', {useNewUrlParser: true});
//or goto docs https://mongoosejs.com/docs/connections.html
Posted by: Guest on September-18-2020
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
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
1

mongoose node js

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language