It seems a bit convoluted to manually define a schema when I'm dealing with JSON all the time. Is there a way to convert JSON into BSON thereby relieving the developer of the need to manually define schemas each time?
images: {type: Object}
Donald Derek 2013-09-15 01:57
There is a tool mongoimport to do this
http://www.mongodb.org/display/DOCS/Import+Export+Tools
Have you looked at node-mongodb-native[1]? It sounds like it might be a better fit for your needs since it doesn't require a predefined schema.