Socket
Socket
Sign inDemoInstall

engine.io

Package Overview
Dependencies
4
Maintainers
1
Versions
150
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.6.3 to 0.7.0

examples/latency/component.json

4

examples/latency/index.js

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

var express = require('express')
, app = express(app)
, app = express()
, server = require('http').createServer(app)
, io = require('engine.io').attach(server);
app.use(express.static('public'));
app.use(express.static('build'));
app.get('/', function(req, res, next){

@@ -14,0 +14,0 @@ res.sendfile('index.html');

@@ -5,6 +5,5 @@ {

"dependencies": {
"express": "3.0.0rc4",
"engine.io": "0.3.7",
"engine.io-client": "0.3.7"
"express": "3.3.5",
"engine.io": "0.7.0"
}
}

@@ -1,3 +0,11 @@

/*global SmoothieChart,TimeSeries,eio*/
/**
* Module dependencies.
*/
var SmoothieChart = require("smoothie").SmoothieChart
, TimeSeries = require("smoothie").TimeSeries
, eio = require("engine.io");
// helper

@@ -4,0 +12,0 @@

@@ -10,2 +10,4 @@

$ npm install
$ component install
$ component build
```

@@ -12,0 +14,0 @@

0.7.0 / 2013-08-23
==================
* package: bump engine.io-client
* updated example
* inline merge
* added support node version 0.10 to .travis.yml
* fixed respond to flash policy request test. Closes #184
* fixed upgrade with timeout test. Closes #185
* engine.io: don't use __proto__, closes #170
0.6.3 / 2013-06-21

@@ -3,0 +14,0 @@ ==================

module.exports = process.env.EIO_COV
? require('./lib-cov/engine.io')
: require('./lib/engine.io');
? require('./lib-cov')
: require('./lib');

@@ -156,16 +156,1 @@ /**

};
/**
* Invoking the library as a function delegates to attach
*
* @param {http.Server} server
* @param {Object} options
* @return {Server} engine server
* @api public
*/
module.exports = function() {
return exports.attach.apply(this, arguments);
};
module.exports.__proto__ = exports;
{
"name": "engine.io"
, "version": "0.6.3"
, "version": "0.7.0"
, "description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server"

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

"debug": "0.6.0"
, "ws": "0.4.25"
, "ws": "0.4.27"
, "engine.io-parser": "0.3.0"

@@ -28,3 +28,3 @@ , "base64id": "0.1.0"

, "superagent": "*"
, "engine.io-client": "0.6.3"
, "engine.io-client": "0.7.0"
, "s": "*"

@@ -31,0 +31,0 @@ }

@@ -62,3 +62,3 @@ /*global eio,listen,request,expect*/

it('should respond to flash policy requests', function (done) {
var server = http.createServer()
var server = net.createServer({allowHalfOpen: true})
, engine = eio.attach(server);

@@ -234,2 +234,5 @@

client.on('data', function (data) {
});
client.on('end', done);

@@ -236,0 +239,0 @@ });

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc