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 = ;var server = ;{;}server;server;
And creating a client to speak to that server is easy too:
var rpc = ;var sys = ;var client = 8000 'localhost';client;
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.