saving a picture to mongodb with node.js

I want to save a picture in mongodb database and I'm using node.js.

There is no driver support for storing images for node.js.

How can I write a mini-driver for storing images in node.js?

Thanks.

There is in fact support for storing large files in all of the official MongoDB drivers, through the GridFS API.

Here's a link to the GridFS documentation for Node.js: http://mongodb.github.com/node-mongodb-native/api-articles/nodekoarticle2.html.