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

luster

Package Overview
Dependencies
Maintainers
2
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

luster - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

1

lib/errors.js

@@ -87,2 +87,1 @@ var Terror = require('terror'),

module.exports = errors;

12

lib/port.js

@@ -94,19 +94,21 @@ var fs = require('fs'),

if (err) {
// unknown error
cb(err);
cb(LusterPortError
.createError(LusterPortError.CODES.UNKNOWN_ERROR, err));
return;
}
var value = this.value;
if (this.family !== Port.UNIX) {
cb(LusterPortError
.createError(LusterPortError.CODES.NOT_UNIX_SOCKET)
.bind({ value : this.value }));
.bind({ value : value }));
return;
}
fs.unlink(this.value, function(err) {
fs.unlink(value, function(err) {
if (err && err.code !== 'ENOENT') {
cb(LusterPortError
.createError(LusterPortError.CODES.CAN_NOT_UNLINK_UNIX_SOCKET, err)
.bind({ socketPath : this.value }));
.bind({ socketPath : value }));
return;

@@ -113,0 +115,0 @@ }

{
"name" : "luster",
"version" : "0.6.0",
"version" : "0.6.1",
"description" : "Node.js cluster wrapper",

@@ -5,0 +5,0 @@ "main" : "./lib/luster.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