var Db = require('mongodb').Db;
var db = new Db('node-mongo-examples',
new Server('localhost', '27017', {}),
{native_parser:true});
db.open(function(err, db) {
db.collection('test', function(err, collection) {
collection.insert({'hello':'world'})
});
});