Skip to content

Instantly share code, notes, and snippets.

@bmdayal
Created October 19, 2015 23:49
Show Gist options
  • Save bmdayal/b796df4bc86596c4f93f to your computer and use it in GitHub Desktop.
Save bmdayal/b796df4bc86596c4f93f to your computer and use it in GitHub Desktop.
// Retrieve
var MongoClient = require('mongodb').MongoClient;
// Connect to the db
MongoClient.connect("mongodb://mongolabtest:mongolabtest@ds048368.mongolab.com:48368/MongoLab-3", function(err, db) {
if(!err) {
console.log("We are connected");
} else {
console.log(err);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment