New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

http-matcher

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

http-matcher - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

9

dist/index.js

@@ -29,8 +29,9 @@ "use strict";

server.close();
resolve(true);
resolve();
});
server.on('error', (err) => {
if (err.code !== 'EADDRINUSE')
return;
resolve(false);
if (['EADDRINUSE', 'EACCES', 'EADDRNOTAVAIL', 'EAFNOSUPPORT', 'EAGAIN', 'EWOULDBLOCK'].includes(err.code)) {
return resolve(err.code);
}
resolve();
});

@@ -37,0 +38,0 @@ server.listen(port);

{
"name": "http-matcher",
"version": "1.1.0",
"version": "1.1.1",
"description": "A simple asynchronous http server, based on node.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

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