We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi guys, here is the code:
var stream = needle.get(url, {headers: headers, "follow_max": 5, compressed: true}).pipe(out); stream.on('end', function() { console.log("Done"); });
The console never show "Done", why? Thanks in advance.
The text was updated successfully, but these errors were encountered:
What content type are you downloading? Are you sure there aren't any errors occurring?
Sorry, something went wrong.
I fixed putting the pipe on the other line:
var stream = needle.get(url, {headers: headers, "follow_max": 5}); stream.pipe(out); stream.on('end', function() { extract(); });
The fix that closes #140 should also take care of this. Can you check again?
No branches or pull requests
Hi guys, here is the code:
The console never show "Done", why?
Thanks in advance.
The text was updated successfully, but these errors were encountered: