Im using Express. i can't figure out how to send an image file to client in a way that it will be displayed to HTML tag <img src='/preview/?doc=xxxxxx&image=img1.jpg'>
. I'm using Cradle getAttachment function to communicate with Couchdb https://github.com/flatiron/cradle
db.getAttachment(id, filename, function (err, reply) {
set('Content-Type', 'image/png');
res.end(reply);
});
i don't know what reply
is exactly and how to transfer that image to client without buffer
To transfer an attachment from cradle to a client without buffering, you can pipe its readableStream to the reponse's writableStream.
The long version
A variant of cradle's
db.getAttachment
returns areadableStream
(see streaming from cradle's docs). express'res
object on the other hand serves as awritableStream
. This means you should be able* to pipe an attachment to it like this:Or, slightly shorter:
*I'm not at work, so sadly I cannot verify this code will run. Drop me a line if you have problems.