MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Nodejs + Mongo db si connettono al database del server con nome utente e password

Usa semplicemente l'URL di connessione di Mongo, come descritto in mogo's documenti:

mongodb://[username:[email protected]]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]

Quindi il tuo codice sarebbe simile a questo (secondo il manuale del modulo npm di mongodb ):

const MongoClient = require('mongodb');

// Connection URL
const url = 'mongodb://[username:[email protected]]host1[:port1][,host2[:port2],...[,hostN[:portN]]]';

// Database Name
const dbName = '[dbName]';

// Use connect method to connect to the server
MongoClient.connect(url, function(err, client) {
  assert.equal(null, err);
  console.log("Connected successfully to server");

  const db = client.db(dbName);

  client.close();
});

In bocca al lupo!