kc-jreq
v1.0.9
Published
[browser] JSON HTTP Requests.
Downloads
23
Maintainers
Readme
JSON Request
[browser] JSON HTTP Requests.
Install
npm install kc-jreq
Use
var data = { a: 1, b: 2 };
jreq('POST', 'https://mypage.com', data, function(res, status){
console.log(res);
console.log(status);
});