RPC service. Originally based on axon-rpc. Rewritten for NGN.
npm install ngn-rpcThis is a modified version of axon-rpc,
designed for use with NGN.

RPC client / server for axon.
``js
var rpc = require('axon-rpc')
, axon = require('axon')
, rep = axon.socket('rep');
var server = new rpc.Server(rep);
rep.bind(4000);
`
Expose a single method name mapped to fn callback.
`js`
server.expose('add', function(a, b, fn){
fn(null, a + b);
});
Expose several methods:
`js`
server.expose({
add: function(){ ... },
sub: function(){ ... }
});
This may also be used to expose
an entire node module with exports:
`js`
server.expose(require('./api'));
`js
var rpc = require('axon-rpc')
, axon = require('axon')
, req = axon.socket('req');
var client = new rpc.Client(req);
req.connect(4000);
`
Invoke method name with some arguments and invoke fn(err, ...):
`js`
client.call('add', 1, 2, function(err, n){
console.log(n);
// => 3
})
Request available methods:
`js`
client.methods(function(err, methods){
console.log(methods);
})
Responds with objects such as:
`js``
{
add: {
name: 'add',
params: ['a', 'b', 'fn']
}
}
(The MIT License)
Copyright (c) 2012 TJ Holowaychuk <tj@learnboost.com>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.