I have this code:
var request = require('request');
request({
url: 'https://example.com',
proxy: 'myproxysettings'
},function (error, response, body) {
if (error) {
console.log(error);
} else {
console.log(response);
}
});
As you can see I'm sending a simple HTTPS request to a web server via another proxy server using request module. What I'm trying to do is close my connection to web server right after my request is send. I don't want to ignore the response from web server, I literally don't want to receive it. This is because the response from web server is too large and by that there's a lot of traffic produced on proxy server.
Any ideas?