Socket
Socket
Sign inDemoInstall

net-ipc

Package Overview
Dependencies
10
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.0 to 1.3.1

2

package.json
{
"name": "net-ipc",
"version": "1.3.0",
"version": "1.3.1",
"description": "Simple message based IPC client/server providing bi-directional communication over sockets and TCP. Supports one-way messages, promise-based request-response, survey, broadcast and zlib-stream compression",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -53,3 +53,2 @@ "use strict";

this.connection = new Socket();
this.connection._buffer = Buffer.allocUnsafe(0);
this.connection.setKeepAlive(true);

@@ -56,0 +55,0 @@ this.connection.on(ConnectionEvents.ERROR, this._onerror.bind(this));

@@ -11,3 +11,2 @@ "use strict";

this.connection = socket;
this.connection._buffer = Buffer.allocUnsafe(0);
this.connection.on(ConnectionEvents.ERROR, this._onerror.bind(this));

@@ -14,0 +13,0 @@ this.connection.on(ConnectionEvents.CLOSE, this._onclose.bind(this));

@@ -195,5 +195,4 @@ "use strict";

_requests: {},
_buffer: "",
_zlib,
_msgpack
};
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc