Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 276 Bytes

File metadata and controls

11 lines (10 loc) · 276 Bytes

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)
  else
    console.log('Connected to DB');
  db.close();
});