0.0.2 • Published 12 years ago

mongify v0.0.2

Weekly downloads
3
License
-
Repository
github
Last release
12 years ago

mongify

mongify your objects.

Build Status

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