mongify your objects.
> npm install mongify
Mongify = rquire('mongify');
Mongify('523396be6a51026f63000001').should.eql(new Mongodb.ObjectID('523396be6a51026f63000001'));
Mongify("not a mongodb ObjectID").should.eql("not a mongodb ObjectID");
Mongify({a: {b: '523496be6a51026f63000001'}, c:32})
.should.eql({a: {b: new Mongodb.ObjectID('523496be6a51026f63000001')}, c:32});
Suppose you are building an API, and you receive a JSON or you want to have a query by ID:
collection.find(Mongify(JSON.parse(query)), function(document){ /* do something*/ });
> npm install
> make test