Skip to content

Instantly share code, notes, and snippets.

@emrivero
Created November 27, 2017 18:16
Show Gist options
  • Save emrivero/5473331a5325f4fe1c3669609dd2a763 to your computer and use it in GitHub Desktop.
Save emrivero/5473331a5325f4fe1c3669609dd2a763 to your computer and use it in GitHub Desktop.
Quickstart Mongodb connect in nodejs
const MongoClient = require('mongodb').MongoClient;
const assert = require('assert');
const url = 'mongodb://localhost:27017/myproject';
MongoClient.connect(url, function(err, db) {
assert.equal(null, err);
console.log("Connected successfully to server");
//.. code here
//..
db.close();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment