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

socket.io-stream

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

socket.io-stream - npm Package Compare versions

Comparing version 0.9.0 to 0.9.1

6

lib/socket.js

@@ -139,3 +139,7 @@ var util = require('util');

// socket.io can't handle Buffer when using browserify.
chunk = chunk.toArrayBuffer();
if (chunk.toArrayBuffer) {
chunk = chunk.toArrayBuffer();
} else {
chunk = chunk.buffer;
}
}

@@ -142,0 +146,0 @@ }

14

package.json
{
"name": "socket.io-stream",
"version": "0.9.0",
"version": "0.9.1",
"description": "stream for socket.io",

@@ -38,10 +38,10 @@ "author": "Naoyuki Kanezawa <naoyuki.kanezawa@gmail.com>",

"blob": "0.0.4",
"browserify": "~11.2.0",
"browserify": "~13.1.0",
"expect.js": "~0.3.1",
"mocha": "~2.3.3",
"socket.io": "~1.3.7",
"socket.io-client": "~1.3.7",
"zuul": "~3.7.1",
"zuul-ngrok": "~3.0.0"
"mocha": "~3.0.2",
"socket.io": "~1.4.8",
"socket.io-client": "~1.4.8",
"zuul": "~3.11.1",
"zuul-ngrok": "~4.0.0"
}
}

Sorry, the diff of this file is too big to display

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