http-json-request

0.0.4 • Public • Published

Overview

HTTP JSON helper function.

Usage

Arguments order are detected automatically.

  • getJSON()
  • postJSON()
  • deleteJSON()
  • putJSON()
  • updateJSON()
  • copyJSON()
  • moveJSON()
  • searchJSON()

Usage:

var httpJson = require('http-json');
httpJson.postJSON('server', {my: jsonObject}, function(error, responseObject){
  console.log(error|responseObject);
});

var httpJson = require('http-json');
httpJson.defaultHost('server');
httpJson.defaultPort(3010);
httpJson.postJSON({my: jsonObject}, function(error, responseObject){
  console.log(error|responseObject);
});
httpJson.putJSON({my: jsonObject}, function(error, responseObject){
  console.log(error|responseObject);
});
httpJson.getJSON({my: jsonObject}, 'server2', function(error, responseObject){
  console.log(error|responseObject);
});

Dependents (0)

Package Sidebar

Install

npm i http-json-request

Weekly Downloads

3

Version

0.0.4

License

MIT

Last publish

Collaborators

  • jussiva