# jsonquest

> A simple HTTP(S) client for JSON APIs

Latest version **0.2.3** (published 2014-03-18) · 0 weekly downloads

## Install

```sh
npm install jsonquest
pnpm add jsonquest
yarn add jsonquest
bun add jsonquest
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.3 |
| Published | 2014-03-18 |
| First published | 2013-06-16 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 7 |
| Author | Maciej Małecki |
| Maintainers | mmalecki |

## Links

- npm: https://www.npmjs.com/package/jsonquest
- Repository: https://github.com/mmalecki/jsonquest
- Issues: https://github.com/mmalecki/jsonquest/issues
- npm.io page: https://npm.io/package/jsonquest

## Recent versions

- 0.2.3 (latest) — 2014-03-18
- 0.2.2 — 2014-02-07
- 0.2.1 — 2013-07-19
- 0.2.0 — 2013-07-19
- 0.1.2 — 2013-06-16
- 0.1.1 — 2013-06-16
- 0.1.0 — 2013-06-16

## README

# jsonquest [![Build Status](https://secure.travis-ci.org/mmalecki/jsonquest.png)](http://travis-ci.org/mmalecki/jsonquest)
A simple HTTP(S) client for JSON APIs.

## Installation
```sh
npm install jsonquest
```

## Usage
```js
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);
});
```

---
_Source: https://npm.io/package/jsonquest · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
