Skip to content
New issue

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

No way to disable automated response parsing in node #824

Open
cmawhorter opened this issue Dec 28, 2015 · 1 comment
Open

No way to disable automated response parsing in node #824

cmawhorter opened this issue Dec 28, 2015 · 1 comment
Labels

Comments

@cmawhorter
Copy link

I'm piping the response to a file and have no need to parse it. I'm trying to disable the automatic parsing entirely to avoid the perf. hit but running into some problems.

var request = require('superagent');
request.parse = {};

I thought that would work based on the documentation but it didn't. The reason seems to be because many parsers are hard-coded into the response handler.

This is a workaround but doesn't seem ideal.

// treats everything as binary
request.parse['application/x-www-form-urlencoded'] =
request.parse['application/json'] =
request.parse.text = request.parse.image;
@focusaurus
Copy link
Contributor

If I'm reading the latest code in the v1.6.1 branch correctly, response parsing should be disabled entirely once req.pipe() is called.

Could you confirm what version you are running and retry with the latest release?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants