Skip to content
This repository was archived by the owner on May 29, 2020. It is now read-only.
 
 

Latest commit

 

History

31 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);
});

About

A simple HTTP(S) client for JSON APIs

Resources

Stars

2 stars

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages