New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nsq.js-k8

Package Overview
Dependencies
Maintainers
5
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nsq.js-k8 - npm Package Compare versions

Comparing version

to
1.1.2

4

lib/connection.js

@@ -543,3 +543,3 @@

if (Buffer.isBuffer(val)) return val;
return new Buffer(val);
return Buffer.from(val);
}

@@ -552,3 +552,3 @@

function int32(n) {
var buf = new Buffer(4);
var buf = Buffer.alloc(4);
buf.writeInt32BE(n, 0);

@@ -555,0 +555,0 @@ return buf;

{
"name": "nsq.js-k8",
"version": "1.1.1",
"version": "1.1.2",
"repository": "segmentio/nsq.js",

@@ -15,16 +15,16 @@ "description": "NSQ client actually written in javascript",

"dependencies": {
"backo": "~1.0.1",
"bignum": "~0.12.5",
"debug": "~0.7.4",
"backo": "~1.1.0",
"bignum": "~0.13.0",
"debug": "^4.1.1",
"ms": "^2.1.1",
"node-int64": "~0.3.0",
"nsq-lookup-jc": "~3.0.0",
"node-int64": "~0.4.0",
"nsq-lookup-jc": "~3.0.2",
"set-component": "~1.0.0"
},
"devDependencies": {
"bytes": "~0.3.0",
"jstrace": "~0.1.0",
"bytes": "~3.0.0",
"jstrace": "~0.3.0",
"mocha": "*",
"should": "*",
"superagent": "~3.5.0",
"superagent": "~4.1.0",
"uid": "0.0.2"

@@ -31,0 +31,0 @@ },

@@ -186,5 +186,5 @@ [![Build Status](https://circleci.com/gh/segmentio/nsq.js.png?circle-token=cedaa77bf0b26477c0ccf9bda78db2233cb08b18)](https://circleci.com/gh/segmentio/nsq.js)

```
nsqd --lookupd-tcp-address=0.0.0.0:4160 &
nsqd --lookupd-tcp-address=0.0.0.0:4160 --broadcast-address=localhost &
nsqadmin --lookupd-http-address=0.0.0.0:4161 &
nsqlookupd &
nsqlookupd --broadcast-address=localhost &
make test

@@ -191,0 +191,0 @@ ```