0.4.1 • Published 7 years ago

jsonful v0.4.1

Weekly downloads
-
License
ISC
Repository
-
Last release
7 years ago

JSONful Javascript client

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

NodeJS

npm install --save jsonful
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

bower install jsonful
0.4.1

7 years ago

0.3.1

8 years ago

0.2.2

8 years ago

0.2.1

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago