Comparing version 2.0.0-rc1 to 2.0.0-rc2
{ | ||
"name": "spdy", | ||
"version": "2.0.0-rc1", | ||
"version": "2.0.0-rc2", | ||
"description": "Implementation of the SPDY protocol on node.js.", | ||
@@ -32,3 +32,3 @@ "license": "MIT", | ||
"select-hose": "^2.0.0", | ||
"spdy-transport": "^1.0.0" | ||
"spdy-transport": "^1.1.1" | ||
}, | ||
@@ -35,0 +35,0 @@ "devDependencies": { |
@@ -73,2 +73,15 @@ # SPDY Server for node.js | ||
Please note that if you use a custom agent, by default all connection-level | ||
errors will result in an uncaught exception. To handle these errors subscribe | ||
to the `error` event and re-emit the captured error: | ||
```javascript | ||
var agent = spdy.createAgent({ | ||
host: 'www.google.com', | ||
port: 443 | ||
}).once('error', function (err) { | ||
this.emit(err); | ||
}); | ||
``` | ||
## API | ||
@@ -75,0 +88,0 @@ |
var spdy = require('./'); | ||
var heapdump = require('heapdump'); | ||
@@ -3,0 +4,0 @@ var options = { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
54179
1122
248
Updatedspdy-transport@^1.1.1