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

uws

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uws - npm Package Compare versions

Comparing version 0.14.4 to 0.14.5

2

package.json
{
"name": "uws",
"version": "0.14.4",
"version": "0.14.5",
"scripts": {

@@ -5,0 +5,0 @@ "install": "node-gyp rebuild > build_log.txt 2>&1 || exit 0"

@@ -6,2 +6,3 @@ 'use strict';

const EE_ERROR = 'Registering more than one listener to a WebSocket is not supported.';
const DEFAULT_PAYLOAD_LIMIT = 16777216;

@@ -48,3 +49,3 @@ function noop() {}

const clientGroup = native.client.group.create();
const clientGroup = native.client.group.create(0, DEFAULT_PAYLOAD_LIMIT);

@@ -378,3 +379,3 @@ native.client.group.onConnection(clientGroup, (external) => {

this.serverGroup = native.server.group.create(nativeOptions, options.maxPayload === undefined ? 16777216 : options.maxPayload);
this.serverGroup = native.server.group.create(nativeOptions, options.maxPayload === undefined ? DEFAULT_PAYLOAD_LIMIT : options.maxPayload);

@@ -381,0 +382,0 @@ // can these be made private?

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