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

smith

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

smith - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

2

package.json

@@ -8,3 +8,3 @@ {

"description": "Smith is an RPC agent system for Node.JS used in architect and vfs.",
"version": "0.1.3",
"version": "0.1.4",
"licenses" : [{

@@ -11,0 +11,0 @@ "type" : "MIT",

@@ -230,5 +230,7 @@ /*

this.on("connect", onConnect);
this.on("disconnect", onError);
this.on("error", onError);
var timeout;
if (this.connectionTimeout) {
var timeout = setTimeout(onTimeout, this.connectionTimeout);
timeout = setTimeout(onTimeout, this.connectionTimeout);
}

@@ -247,2 +249,3 @@

function onTimeout() {
reset();
var err = new Error("ETIMEDOUT: Timeout while waiting for Agent agent to connect.");

@@ -255,2 +258,3 @@ err.code = "ETIMEDOUT";

self.removeListener("connect", onConnect);
self.removeListener("disconnect", onError);
self.removeListener("error", onError);

@@ -257,0 +261,0 @@ clearTimeout(timeout);

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