Socket
Socket
Sign inDemoInstall

engine.io

Package Overview
Dependencies
75
Maintainers
1
Versions
147
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.1 to 0.1.2

5

History.md
0.1.2 / 2012-08-02
==================
* Fixed a jsonp bug in Nokia mobile phones and potentially other UAs.
0.1.1 / 2012-08-01

@@ -3,0 +8,0 @@ ==================

7

lib/transports/polling.js

@@ -146,3 +146,8 @@

self.onData(chunks);
res.writeHead(200, self.headers(req, { 'Content-Length': 2, 'Content-Type': 'text/plain; charset=UTF-8' }));
res.writeHead(200, self.headers(req, {
'Content-Length': 2
// text/html is required instead of text/plain to avoid an
// unwanted download dialog on certain user-agents (GH-43)
, 'Content-Type': 'text/html'
}));
res.end('ok');

@@ -149,0 +154,0 @@ cleanup();

4

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

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

"debug": "0.6.0"
, "engine.io-client": "0.1.1"
, "engine.io-client": "0.1.2"
, "ws": "~0.4.21"

@@ -11,0 +11,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