Socket
Socket
Sign inDemoInstall

socket.io

Package Overview
Dependencies
Maintainers
1
Versions
158
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

socket.io - npm Package Compare versions

Comparing version 0.8.0 to 0.8.1

lib/transports/websocket/hybi-07-12.js

8

History.md
0.8.1 / 2011-08-29
==================
* Fixed utf8 bug in send framing in websocket [einaros]
* Fixed typo in docs [Znarkus]
* Fixed bug in send framing for over 64kB of data in websocket [einaros]
* Corrected ping handling in websocket transport [einaros]
0.8.0 / 2011-08-28

@@ -3,0 +11,0 @@ ==================

2

lib/socket.io.js

@@ -18,3 +18,3 @@

exports.version = '0.8.0';
exports.version = '0.8.1';

@@ -21,0 +21,0 @@ /**

@@ -7,5 +7,5 @@

module.exports = {
7: require('./7'),
8: require('./8'),
7: require('./hybi-07-12'),
8: require('./hybi-07-12'),
default: require('./default')
};
{
"name": "socket.io"
, "version": "0.8.0"
, "version": "0.8.1"
, "description": "Real-time apps made cross-browser & easy with a WebSocket-like API"

@@ -19,3 +19,3 @@ , "homepage": "http://socket.io"

, "dependencies": {
"socket.io-client": "0.8.0"
"socket.io-client": "0.8.1"
, "policyfile": "0.0.4"

@@ -22,0 +22,0 @@ , "redis": "0.6.6"

@@ -63,3 +63,3 @@ # Socket.IO

io.sockets.on('connection', function (socket) {
io.sockets.emit('this', { will: 'be received by everyone');
io.sockets.emit('this', { will: 'be received by everyone' });

@@ -66,0 +66,0 @@ socket.on('private message', function (from, msg) {

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