Skip to content

Instantly share code, notes, and snippets.

@mattb20
Created June 6, 2018 09:58
Show Gist options
  • Save mattb20/9e09ff47365d4bf924b21473a04ada8a to your computer and use it in GitHub Desktop.
Save mattb20/9e09ff47365d4bf924b21473a04ada8a to your computer and use it in GitHub Desktop.
var MongoClient = require('mongodb').MongoClient;
var uri = "mongodb+srv://kay:myRealPassword@cluster0.mongodb.net/test";
MongoClient.connect(uri, function(err, client) {
const collection = client.db("test").collection("devices");
// perform actions on the collection object
client.close();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment