mongify
v0.0.2
Published
mongify your objects.
Downloads
8
Readme
mongify
mongify your objects.
how
> 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 Date('523496be6a51026f63000001')}, c:32});
why
Suppose you are building an API, and you receive a JSON. You want to have a query by ID:
collection.find(Mongify(JSON.parse(query)), function(document){ /* do something*/ });
test
> npm install
> make test