# jsonful

> JSONful javascript client

Latest version **0.4.1** (published 2016-12-02) · ISC license · 0 weekly downloads

## Install

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

## 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.4.1 |
| Published | 2016-12-02 |
| First published | 2016-04-20 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 6 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | crodas |

## Links

- npm: https://www.npmjs.com/package/jsonful
- npm.io page: https://npm.io/package/jsonful

## Dependencies (6)

- [lie](https://npm.io/package/lie.md) ^3.0.4
- [nsstorage](https://npm.io/package/nsstorage.md) 0.0.3
- [micro-events](https://npm.io/package/micro-events.md) ^1.0.0
- [object-assign](https://npm.io/package/object-assign.md) ^4.1.0
- [xmlhttprequest](https://npm.io/package/xmlhttprequest.md) ^1.8.0
- [node-localstorage](https://npm.io/package/node-localstorage.md) ^1.3.0

## Recent versions

- 0.4.1 (latest) — 2016-12-02
- 0.3.1 — 2016-10-03
- 0.2.2 — 2016-07-12
- 0.2.1 — 2016-07-10
- 0.1.4 — 2016-06-04
- 0.1.3 — 2016-04-30
- 0.1.2 — 2016-04-21
- 0.1.1 — 2016-04-20

## README

JSONful Javascript client
=========================

This is the JSONful Javascript client. It's designed for both, the server and NodeJS.

NodeJS
------

```bash
npm install --save jsonful
```

```js
var JSONful = require('jsonful').JSONful;

var c = new JSONful("http://localhost:9999/demo.php");
c.exec("is_prime", {q: 1}, function(err, is) {
    console.error("is prime", is);
});

c.exec("is_prime", {q: 2}, function(err, is) {
    console.error("is prime", is);
});

c.exec("is_prime", {q: 12}, function(err, is) {
    console.error("is prime", is);
});
```

Browser
-------

```bash
bower install jsonful
```

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