You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
// treats everything as binaryrequest.parse['application/x-www-form-urlencoded']=request.parse['application/json']=request.parse.text=request.parse.image;
The text was updated successfully, but these errors were encountered:
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.
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.
The text was updated successfully, but these errors were encountered: