1.2.5 • Published 4 months ago

bare-zmq v1.2.5

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
4 months ago

bare-zmq

Low-level ZeroMQ bindings for JavaScript.

npm i bare-zmq

In memory of Pieter Hintjens :rose:

Usage

const { Context, PairSocket } = require('bare-zmq')

const ctx = new Context()

const a = new PairSocket(ctx)
const b = new PairSocket(ctx)

const endpoint = 'inproc://foo'

a.bind(endpoint)
b.connect(endpoint)

a.createReadStream().on('data', console.log)
b.createWriteStream().write('hello world')

License

Apache-2.0

1.2.5

4 months ago

1.2.4

7 months ago

1.2.3

7 months ago

1.2.2

7 months ago

1.2.1

7 months ago

1.2.0

7 months ago

1.1.0

7 months ago

1.0.0

7 months ago