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

spdy

Package Overview
Dependencies
Maintainers
2
Versions
206
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

spdy - npm Package Compare versions

Comparing version 2.0.0-rc1 to 2.0.0-rc2

4

package.json
{
"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 = {

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