Socket
Socket
Sign inDemoInstall

jsonrpc2

Package Overview
Dependencies
Maintainers
0
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsonrpc2

JSON-RPC server and client library


Version published
Weekly downloads
4
decreased by-80.95%
Maintainers
0
Weekly downloads
 
Created
Source

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');

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('jsonrpc2');
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.

Keywords

FAQs

Package last updated on 04 Jul 2011

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc