npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-bertrpc

v1.0.1

Published

BERT-RPC is a schemaless binary remote procedure call protocol

Downloads

10

Readme

                     bertrpc.js

This is a BERT-RPC server and client library for node.js http://nodejs.org/, the V8 based evented IO framework.

BERT-RPC is a schemaless binary remote procedure call protocol by Tom Preston-Werner, based on the BERT (Binary ERlang Term) serialization format.

See http://bert-rpc.org/ for more information about BERT and BERT-RPC, including additional language implementations.

The bert.js library was taken from Rusty Klophaus's BERT-JS project: http://github.com/rklophaus/BERT-JS but has been modified quite a bit at this point.

STATUS

This package is lightly maintained in hopes somebody finds it useful.

INSTALL

node.js must be installed and available on your PATH before continuing. It's trivial:

cd /tmp
curl -L http://bit.ly/nodejs | tar xvzf -
cd node-*
./configure PREFIX=/usr/local
make && sudo make install

EXAMPLES

Once you have node installed, grab a clone of the node-bertrpc git repo

$ git clone git://github.com/znull/node-bertrpc
$ cd node-bertrpc
$ node examples/helloworld.js
  <--  exposing: say [funs: hello, echo]

Leave that there and then run the example client in a separate shell:

$ node examples/helloclient.js

You should see something like the following output from the server:

  -->   connect
  -->   30: {call, say, hello, []}
  <--   21: {reply, <<"hello">>}
  -->   45: {call, say, echo, [<<"Hello World">>]}
  <--   33: {reply, [<<"Hello World">>]}
  -->   85: {call, say, echo, [[{foo, <<"bar">>}, {bar, <<"baz">>}], 21]}
  <--   73: {reply, [[{foo, <<"bar">>}, {bar, <<"baz">>}], 21]}
  -->   eof
  <--   close

Connect with the Ruby BERT-RPC client (or any other BERT-RPC client) to play at a REPL:

$ sudo gem install bertrpc -s http://gemcutter.org/
$ irb -rubygems -rbertrpc
>> service = BERTRPC::Service.new('localhost', 7000)
>> service.call.say.echo('hello', 'world', { 'foo' => %w[bar baz bizle] })
=> ["hello", "world", {:foo=>["bar", "baz", "bizzle"]}]

BERT-RPC SERVERS

Require the "bertrpc" lib and expose objects:

var rpc = require('bertrpc');
rpc.expose('hello', {
   add: function (a, b) {
      return a + b;
   },
   subtract: function (a, b) {
      return a - b;
   }
});

rpc.listen(7001, 'localhost');

Start the node server by running your script directly:

node yourstuff.js

That exposes a BERT-RPC module named "hello" with two remotely callable functions: "add" and "subtract" but you can pass any object to expose to make all of its functions available.

BERT-RPC CLIENTS

The BERT-RPC client library is still very experimental and likely to change significantly:

var sys = require('sys'),
    rpc = require('bertrpc');
rpc.connect(7001, 'localhost', function (service) {
   sys.puts("client calling the add fun in the hello module");
   service.call('hello', 'add', [1, 2], function (result) {
      sys.puts("client received response: " + sys.inspect(result));
      // do something useful
   });
});

BERT ENCODING / DECODING

The bert.js library includes functions for encoding, decoding, and getting a formatting string representation of BERT objects.

Get in a REPL:

$ NODE_PATH=./src node-repl
Welcome to the Node.js REPL.
Enter ECMAScript at the prompt.
node> bert = require('bert');

bert.encode serializes an object graph as a BERT:

node> holabert = bert.encode('hello')
"\u0083m\u0000\u0000\u0000\u0005hello"
node> sys.puts(bert.bin_repr(holabert))
<<131,109,0,0,0,5,104,101,108,108,111>>

bert.decode deserializes a BERT, creating an object graph:

node> bert.decode("\u0083m\u0000\u0000\u0000\u0005hello")
"hello"

DEVELOPMENT

The tests have been converted to use nodeunit. Make sure it is installed and available in your path, then run nodeunit test/test_* to execute the tests.

SEE ALSO

CODE: git clone git://github.com/znull/node-bertrpc.git HOME: http://github.com/znull/node-bertrpc/ BUGS: http://github.com/znull/node-bertrpc/issues COPY: See the file COPYING (it's MIT)