Created
September 5, 2015 14:05
-
-
Save namelos/ffcda0987991e1786fe7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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