Socket
Socket
Sign inDemoInstall

engine.io

Package Overview
Dependencies
17
Maintainers
2
Versions
147
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.3.0 to 3.3.1

3

lib/server.js

@@ -362,4 +362,3 @@

var head = new Buffer(upgradeHead.length); // eslint-disable-line node/no-deprecated-api
upgradeHead.copy(head);
var head = Buffer.from(upgradeHead); // eslint-disable-line node/no-deprecated-api
upgradeHead = null;

@@ -366,0 +365,0 @@

{
"name": "engine.io",
"version": "3.3.0",
"version": "3.3.1",
"description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server",

@@ -38,3 +38,3 @@ "main": "lib/engine.io",

"babel-preset-es2015": "^6.24.0",
"engine.io-client": "3.3.0",
"engine.io-client": "3.3.1",
"eslint": "^4.5.0",

@@ -41,0 +41,0 @@ "eslint-config-standard": "^10.2.1",

@@ -23,3 +23,3 @@

socket.send('utf 8 string');
socket.send(new Buffer([0, 1, 2, 3, 4, 5])); // binary data
socket.send(Buffer.from([0, 1, 2, 3, 4, 5])); // binary data
});

@@ -26,0 +26,0 @@ ```

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