Skip to content

Instantly share code, notes, and snippets.

@namelos
Created September 5, 2015 14:05
Show Gist options
  • Save namelos/ffcda0987991e1786fe7 to your computer and use it in GitHub Desktop.
Save namelos/ffcda0987991e1786fe7 to your computer and use it in GitHub Desktop.
import { MongoClient } from 'mongodb';
import assert from 'assert';
const url = 'mongodb://localhost:27017/test';
MongoClient.connect(url, (err, db) => {
assert.equal(null, err);
console.log('connected');
db.close();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment