- Notifications
You must be signed in to change notification settings - Fork 80
JSON-RPC client and server for node.js
License
Notifications You must be signed in to change notification settings
ericflo/node-jsonrpc
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Latest commit | ||||
Repository files navigation
This is a JSON-RPC server and client library for node.js <http://nodejs.org/>, 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.
About
JSON-RPC client and server for node.js
Resources
License
Uh oh!
There was an error while loading. Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Contributors 2
Uh oh!
There was an error while loading. Please reload this page.