-
Automatic proxy setting, if you set the proxy in your environment variable(http_proxy), it will be auto detected and used in your any HTTP request, also it will be used in your HTTPS request by HTTPS Tunnel(depend on node-tunnel) to make HTTPS request through HTTP. Optional, you can set proxy manually by calling setProxy(proxy).
-
Make your HTTP/HTTPS request with cookie, cookie will be automatically processed int any HTTP/HTTPS request and you can get cookie value in response.
-
HTTP redirect handling, HTTP redirect(301/302) will be automatically handled in you HTTP/HTTPS request.
var http = require('client-http');
http.get("http://www.google.com/", function(data){
data && console.log(data);
});
$ npm install client-http
var http = require('client-http');
http.get("https://www.google.com/", function(data){
data && console.log(data);
});
var http = require('client-http');
http.get("http://www.google.com/", function(data, err, cookie){
!err && console.log(cookie);
});
var http = require('client-http');
http.get("http://www.google.com/", function(data, err, cookie, headers){
!err && console.log(headers);
});
var http = require('client-http');
http.request("http://www.snee.com/xml/crud/posttest.cgi", function(data){
data && console.log(data);
}, "fname=hello&lname=world");
var http = require('client-http');
// we use iPhone as our user-agent and see what happen
http.request("http://twitter.com/", function(data){
data && console.log(data);
}, null, {"User-Agent": "iPhone"});
var http = require('client-http');
http.setProxy('http://127.0.0.1:8080');
http.get("https://www.google.com/", function(data){
data && console.log(data);
});
var http = require('client-http');
http.setTimeout(5000);
http.get("https://www.google.com/", function(data){
data && console.log(data);
});