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

abstract-socket

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

abstract-socket - npm Package Compare versions

Comparing version 2.0.0 to 2.1.0

11

lib/abstract_socket.js
'use strict';
const net = require('net');
const binding = require('bindings')('abstract_socket.node');
const binding = require('bindings')();

@@ -11,12 +11,5 @@ const socket = binding.socket;

const errnoException = require('util')._errnoException;
function errnoException(errorno, syscall) {
// TODO: having the errno message here would be nice
const e = new Error(syscall + ' ' + errorno);
e.errno = e.code = errorno;
e.syscall = syscall;
return e;
}
class AbstractSocketServer extends net.Server {

@@ -23,0 +16,0 @@ constructor(listener) {

13

package.json
{
"author": {
"name": "Saúl Ibarra Corretgé",
"email": "saghul@gmail.com",
"url": "http://bettercallsaghul.com"
"email": "s@saghul.net",
"url": "https://bettercallsaghul.com"
},

@@ -11,3 +11,3 @@ "scripts": {

"name": "abstract-socket",
"version": "2.0.0",
"version": "2.1.0",
"description": "Abstract domain socket support for Node",

@@ -26,7 +26,7 @@ "main": "lib/abstract_socket",

"bindings": "^1.2.1",
"nan": "^2.0.9"
"nan": "^2.12.1"
},
"devDependencies": {
"should": "8.2.x",
"mocha": "2.4.x"
"mocha": "3.x",
"should": "11.x"
},

@@ -37,2 +37,1 @@ "os": [

}

Sorry, the diff of this file is not supported yet

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