zeromq.node icon indicating copy to clipboard operation
zeromq.node copied to clipboard

Node.js bindings to the zeromq library

Results 101 zeromq.node issues
Sort by recently updated
recently updated
newest added

I am trying to build zmq on rhel7- ppc64le. The build passes however the tests fail with the following error: npm test > [email protected] test /zeromq.node > mocha --expose-gc --slow...

I installed zeromq in Raspberry Pi. And when I run the nodejs example for zeromq it gives error as: TypeError: zmq.socket is not a function.

../binding.cc:1541: instantiated from here ../node_modules/nan/nan.h:1878: error: ?𻱇etFunction?𼀠was not declared in this scope make: **\* [Release/obj.target/zmq/binding.o] Error 1 make: Leaving directory `/data/node_modules/zmq/build' gyp ERR! build error gyp ERR! stack Error:`make` failed...

Still gives deprecation warnings but at least works

I am running Manjaro/Arch Linux: ``` community/zeromq 4.2.2-2 [installed] Fast messaging system built on sockets. C and C++ bindings. aka 0MQ, ZMQ. community/node-gyp 3.6.2-1 [installed] Node.js native addon build tool...

Hey, that's what I get during installation of zmq. Seems like some of scripts are old. > ➜ zeromq-node npm install zmq --save > > > [email protected] install /Users/pronebird/Downloads/zeromq-node/node_modules/zmq >...

Hi, when I try to install npm [email protected] I am getting following error: [email protected] install /bundle/bundle/programs/server/npm/node_modules/msgpack node-gyp rebuild make: Entering directory '/bundle/bundle/programs/server/npm/node_modules/msgpack/build' CC(target) Release/obj.target/libmsgpack/deps/msgpack/objectc.o CC(target) Release/obj.target/libmsgpack/deps/msgpack/unpack.o CC(target) Release/obj.target/libmsgpack/deps/msgpack/vrefbuffer.o CC(target) Release/obj.target/libmsgpack/deps/msgpack/zone.o...

I've download zmq using "npm install zmq" but I got the following error: Package libzmq was not found in the pkg-config search path.Perhaps you should add the directory containing `libzmq.pc'...

Hi, wondering if there are plans to support the DISH/RADIO socket types? http://api.zeromq.org/master:zmq-udp ``` export interface SocketTypes { pub: number; xpub: number; sub: number; xsub: number; req: number; xreq: number;...

Besides multipart messages as in example below, this issue prevents chaining router/dealer proxies ``` const zmq = require('zeromq'); function viaProxy() { const addr1 = "tcp://127.0.0.1:8901"; const addr2 = "tcp://127.0.0.1:8902"; const...