0.4.1 • Published 10 years ago

jsonful v0.4.1

Weekly downloads
-
License
ISC
Repository
-
Last release
10 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

10 years ago

0.3.1

10 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago