0.2.3 • Published 10 years ago

jsonquest v0.2.3

Weekly downloads
23
License
-
Repository
github
Last release
10 years ago

jsonquest Build Status

A simple HTTP(S) client for JSON APIs.

Installation

npm install jsonquest

Usage

var jsonquest = require('jsonquest');

jsonquest({
  host: 'localhost',
  port: 9999,
  path: '/hello',
  body: { hello: 'world' },
  method: 'PUT',
  protocol: 'http'
}, function (err, res, body) {
  console.log('/hello responded with ' + res.statusCode);
  console.dir(body);
});
0.2.3

10 years ago

0.2.2

10 years ago

0.2.1

11 years ago

0.2.0

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago