const MongoClient = require('mongodb').MongoClient; const assert = require('assert'); // Connection URL const url = 'mongodb://localhost:27017'; // Database Name const dbName = 'myproject'; // Use connect method to connect to the Server MongoClient.connect(url, function(err, client) { assert.equal(null, err); console.log("Connected correctly to server"); const db = client.db(dbName);