Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the following node.js code to download documents from some url and save it in the disk. I want to be informed about when the document is downloaded. i have not seen any callback with pipe.Or, Is there any 'end' event that can be captured on completion of download ?

request(some_url_doc).pipe(fs.createWriteStream('xyz.doc'));
share|improve this question

1 Answer

up vote 7 down vote accepted

Streams are event emitters so you can listen to certain events. Like you said there is an 'end' event for request.

 var r = request(...).pipe(...);
 r.on('end', function () { ... });

For more information about which events are available you can check the stream documentation page.

share|improve this answer
Thanks. This is what I was looking out for. – user644745 Jul 12 '12 at 9:42

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.