0.3.3 • Published 9 years ago

war-http v0.3.3

Weekly downloads
2
License
MIT
Repository
github
Last release
9 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

9 years ago

0.3.2

9 years ago

0.3.1

9 years ago

0.3.0

9 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

1.0.0

10 years ago