https://github.com/ericflo/node-jsonrpc
JSON-RPC client and server for node.js
https://github.com/ericflo/node-jsonrpc
Last synced: 11 months ago
JSON representation
JSON-RPC client and server for node.js
- Host: GitHub
- URL: https://github.com/ericflo/node-jsonrpc
- Owner: ericflo
- License: other
- Created: 2009-11-27T11:42:20.000Z (over 16 years ago)
- Default Branch: master
- Last Pushed: 2011-05-17T18:08:42.000Z (about 15 years ago)
- Last Synced: 2025-04-02T23:01:34.729Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 165 KB
- Stars: 89
- Watchers: 9
- Forks: 83
- Open Issues: 6
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
This is a JSON-RPC server and client library for node.js ,
the V8 based evented IO framework.
Firing up an efficient JSON-RPC server becomes extremely simple:
var rpc = require('jsonrpc');
function add(first, second) {
return first + second;
}
rpc.expose('add', add);
rpc.listen(8000, 'localhost');
And creating a client to speak to that server is easy too:
var rpc = require('jsonrpc');
var sys = require('sys');
var client = rpc.getClient(8000, 'localhost');
client.call('add', [1, 2], function(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.