Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to Node.js. Can anyone provide me an example of how to use GridFS for storing and retrieving binary data, such as images, using Node.js and Mongoose? Do I need to directly access GridFS?

share|improve this question
Are you looking for a Mongoose example or are you open to other libraries? – Chris Biscardi Nov 15 '11 at 11:44
i am using mongodb with node.js to store and retrieve data.But i am getting problem in storing and retrieving image files.therefore i want to use GridFS for the same purpose.I am getting confused of how to achieve this. – Dar Hamid Nov 15 '11 at 11:49
What library are you using? – Chris Biscardi Nov 15 '11 at 14:14
i am using mongoose,express,connect-form. – Dar Hamid Nov 15 '11 at 14:34
5  
You should accept answers to some of your past questions. Not only will this show your appreciation for the people who spent their own time to help you, but it will improve your 0% accept rate and the chances that they will answer any future questions you may have. – marc_s Nov 17 '11 at 6:14

2 Answers

I suggest taking a look at this question: Problem with MongoDB GridFS Saving Files with Node.JS

Copied example from the answer (credit goes to christkv):

// You can use an object id as well as filename now
var gs = new mongodb.GridStore(this.db, filename, "w", {
  "chunk_size": 1024*4,
  metadata: {
    hashpath:gridfs_name,
    hash:hash,
    name: name
  }
});

gs.open(function(err,store) {
  // Write data and automatically close on finished write
  gs.writeBuffer(data, true, function(err,chunk) {
    // Each file has an md5 in the file structure
    cb(err,hash,chunk);
  });
});
share|improve this answer
1  
I'm struggling with the this.db part of the above example; I'm not sure how to get the MongoDB db object back from Mongoose. – Howard M. Lewis Ship Jul 2 '12 at 22:13

It looks like the writeBuffer has since been deprecated.

/Users/kmandrup/private/repos/node-mongodb-native/HISTORY:
   82  * Fixed dereference method on Db class to correctly dereference Db reference objects. 
   83  * Moved connect object onto Db class(Db.connect) as well as keeping backward compatibility.
   84: * Removed writeBuffer method from gridstore, write handles switching automatically now.
   85  * Changed readBuffer to read on Gridstore, Gridstore now only supports Binary Buffers no Strings anymore.
share|improve this answer
It looks like this is easily resolvable by switching to simply write. – martindale Dec 11 '12 at 20:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.