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

@aurox/persistent-websocket-connection

Package Overview
Dependencies
Maintainers
5
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aurox/persistent-websocket-connection - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

2

dist/PersistentWebsocketConnection.js

@@ -337,3 +337,3 @@ import WebSocket from 'isomorphic-ws';

this.logger.debug(`Attempting to connect to ${this.url}.`);
this.connection = new WebSocket(this.url, { agent: this.agent });
this.connection = this.agent ? new WebSocket(this.url, { agent: this.agent }) : new WebSocket(this.url);
this.onConnecting(this.connection);

@@ -340,0 +340,0 @@ this.emit('connecting');

{
"name": "@aurox/persistent-websocket-connection",
"version": "0.6.0",
"version": "0.6.1",
"description": "Aurox Persistent Websocket Connection",

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

@@ -458,3 +458,3 @@ import WebSocket, { MessageEvent, ErrorEvent } from 'isomorphic-ws';

this.connection = new WebSocket(this.url, { agent: this.agent });
this.connection = this.agent ? new WebSocket(this.url, { agent: this.agent }) : new WebSocket(this.url);

@@ -461,0 +461,0 @@ this.onConnecting(this.connection);

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