0.1.1 • Published 12 years ago

jsonrpc2 v0.1.1

Weekly downloads
36
License
-
Repository
github
Last release
12 years ago

node-jsonrpc2

This is a JSON-RPC server and client library for node.js http://nodejs.org/, the V8 based evented IO framework.

Install

To install node-jsonrpc2 in the current directory, run:

npm install jsonrpc2

Usage

Firing up an efficient JSON-RPC server becomes extremely simple:

var rpc = require('jsonrpc2');

var server = new rpc.Server();

function add(args, opt, callback) {
  callback(null, args[0] + args[1]);
}
server.expose('add', add);

server.listen(8000, 'localhost');

And creating a client to speak to that server is easy too:

var rpc = require('jsonrpc2');
var sys = require('sys');

var client = new rpc.Client(8000, 'localhost');

client.call('add', [1, 2], function(err, result) {
    sys.puts('1 + 2 = ' + result);
});

To learn more, see the examples directory, peruse test/jsonrpc-test.js, or simply "Use The Source, Luke".

More documentation and development is on its way.

0.1.1

12 years ago

0.1.0

12 years ago

0.0.9

12 years ago

0.0.8

12 years ago

0.0.6

13 years ago

0.0.5

13 years ago

0.0.4

13 years ago

0.0.3

13 years ago

0.0.2

13 years ago

0.0.1

13 years ago