Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

zmq

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zmq - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

2

examples/stress-test-server.js

@@ -19,3 +19,3 @@ /*

var zmq = require('zmq'),
var zmq = require('../zmq'),
util = require('util');

@@ -22,0 +22,0 @@

{
"name": "zmq",
"version": "1.0.2",
"version": "1.0.3",
"description": "Bindings for node.js to zeromq",

@@ -20,4 +20,5 @@ "main": "zmq",

"Rick <technoweenie@gmail.com> (http://techno-weenie.net/)",
"Corey Jewett (http://syntheticplayground.com/)"
"Corey Jewett (http://syntheticplayground.com/)",
"Micheil Smith <micheil@brandedcode.com> (http://brandedcode.com/)"
]
}

@@ -53,3 +53,3 @@ This library gives you bindings to ØMQ from node.js. This is not terribly

`address` should be a string as described in the [ØMQ API docs][zmq_bind].
`callback` will be called when binding is complete and takes one argument,
`callback` will be called when binding is complete and takes one argument,
which may be an `Error`, or simply `undefined` if everything's peachy.

@@ -59,4 +59,6 @@

message is not sent immediately, but there is no callback indicating when
it has been transmitted. Have your server ack or something if you care that
much.
it has been transmitted. See the
[0MQ](http://www.zeromq.org/intro:read-the-manual) documentation for
[zmq_send](http://api.zeromq.org/2-1:zmq-send) for exact
transmission semantics. Raises an exception if the return is < 0.

@@ -63,0 +65,0 @@ The message must be a `Buffer` object or a string. It is assumed that

var vows = require('vows'),
assert = require('assert'),
zeromq = require('zeromq');
zeromq = require('../zeromq');

@@ -5,0 +5,0 @@ var uri = 'inproc://unbalanced';

var vows = require('vows'),
assert = require('assert'),
zeromq = require('zeromq');
zeromq = require('../zeromq');

@@ -5,0 +5,0 @@ var suite = vows.describe('ZeroMQ');

@@ -6,4 +6,3 @@ /*globals require exports process Buffer */

var IOWatcher = process.binding('io_watcher').IOWatcher;
var zmq = require('./build/default/binding');
var sys = require('sys');
var zmq = require('./binding');

@@ -218,3 +217,2 @@ // A map of convenient names to the ZMQ constants for socket types.

e.flags = flags;
e.outgoing = sys.inspect(this._outgoing);
try {

@@ -221,0 +219,0 @@ this.emit('error', e);

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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