richzmq
v0.3.0
Published
Re-exports the zmq module but with seamless support for rich data types.
Downloads
4
Readme
richzmq
Re-exports the zmq
module but with seamless support for rich data types. Messages are serialized and deseralized according to the structured clone algorithm without changing its API.
npm install richzmq
var zmq = require('richzmq')
, sock = zmq.socket('rep');
sock.connect('tcp://127.0.0.1:3001');
// etc...