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

faye-websocket

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

faye-websocket - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

6

CHANGELOG.md

@@ -0,1 +1,7 @@

### 0.6.1 / 2013-07-05
* Add `ca` option to the client for specifying certificate authorities
* Start the server driver asynchronously so that `onopen` handlers can be added
### 0.6.0 / 2013-05-12

@@ -2,0 +8,0 @@

4

lib/faye/websocket.js

@@ -31,3 +31,5 @@ // API references:

this._driver.start();
process.nextTick(function() {
self._driver.start();
});
};

@@ -34,0 +36,0 @@ util.inherits(WebSocket, API);

@@ -24,3 +24,3 @@ var util = require('util'),

if (options && options.verify === false) tlsOptions.rejectUnauthorized = false;
if (options && options.ca) tlsOptions.ca = options.ca;

@@ -27,0 +27,0 @@ var connection = secure

@@ -6,23 +6,18 @@ { "name" : "faye-websocket"

, "keywords" : ["websocket", "eventsource"]
, "license" : "MIT"
, "version" : "0.6.0"
, "version" : "0.6.1"
, "engines" : {"node": ">=0.4.0"}
, "main" : "./lib/faye/websocket"
, "dependencies" : {"websocket-driver": ">=0.2.0"}
, "devDependencies" : {"jsclass": "", "pace": ""}
, "devDependencies" : {"jstest": "", "pace": ""}
, "scripts" : {"test": "node spec/runner.js"}
, "scripts" : {"test": "jstest spec/runner.js"}
, "repository" : { "type" : "git"
, "url" : "git://github.com/faye/faye-websocket-node.git"
}
, "bugs" : "http://github.com/faye/faye-websocket-node/issues"
, "licenses" : [ { "type" : "MIT"
, "url" : "http://www.opensource.org/licenses/mit-license.php"
}
]
, "repositories" : [ { "type" : "git"
, "url" : "git://github.com/faye/faye-websocket-node.git"
}
]
}
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