You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Section 49.1: Simple example to Connect mongoDB from Node.JS
MongoClient.connect('mongodb://localhost:27017/myNewDB',function(err,db){if(err)console.log("Unable to connect DB. Error: "+err)elseconsole.log('Connected to DB');db.close();});