kc-nreq

[nodejs] JSON HTTP Requests.


Keywords
http request, xhr
License
ISC
Install
npm install kc-nreq@1.0.2

Documentation

HTTP Request

[nodejs] JSON HTTP Requests.

Install

npm install kc-nreq

Use

var data = { a: 1, b: 2 };
nreq('POST', 'https://mypage.com', data, function(res, status){
    console.log(res);
    console.log(status);
});