0.3.3 • Published 8 years ago

war-http v0.3.3

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

NPM version Build Status Coverage Status NPM downloads

war-http

Yet another simple HTTP/HTTPS request module of Node.js.Support GET,POST,PUT.

Author

Warrior!

Usage

npm install --save war-http
var request=require('war-http');
request(url,options,function(head,body){},postData);

Example

//test.js
var request = require('war-http');
var options = {
  method: 'POST',
  headers: {
    'User-Agent': '',
    'Referer': 'https://www.taobao.com',
    'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
    'X-Requested-With': 'XMLHttpRequest'
  }
};
var data = {
  'foo': 'bar'
};
request('https://www.baidu.com',options,function(head,body){
	console.log(body);
}, data);

then

node test
0.3.3

8 years ago

0.3.2

8 years ago

0.3.1

8 years ago

0.3.0

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

1.0.0

8 years ago