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

http2-proxy

Package Overview
Dependencies
Maintainers
1
Versions
193
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

http2-proxy - npm Package Compare versions

Comparing version 4.2.5 to 4.2.6

14

index.js

@@ -202,3 +202,5 @@ const http = require('http')

proxySocket.on('error', noop)
proxySocket.destroy()
if (proxySocket.destroy) {
proxySocket.destroy()
}
}

@@ -212,3 +214,5 @@

proxyRes.on('error', noop)
proxyRes.destroy()
if (proxyRes.destroy) {
proxyRes.destroy()
}
}

@@ -223,3 +227,7 @@

proxyReq.on('error', noop)
proxyReq.abort()
if (proxyReq.abort) {
proxyReq.abort()
} else if (proxyReq.destroy) {
proxyReq.destroy()
}
}

@@ -226,0 +234,0 @@

{
"name": "http2-proxy",
"version": "4.2.5",
"version": "4.2.6",
"scripts": {

@@ -5,0 +5,0 @@ "dev": "nodemon --inspect=9308 src",

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