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

glazewm

Package Overview
Dependencies
Maintainers
0
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

glazewm - npm Package Compare versions

Comparing version 1.5.0 to 1.5.1

6

dist/index.d.ts

@@ -398,6 +398,6 @@ import { MessageEvent, Event, CloseEvent, ErrorEvent } from 'ws';

/**
* Instantiates client.
* Instantiates client and attempts to connect to IPC server.
*
* Connection to the IPC server is established when sending the first
* message or by explicitly calling {@link connect}.
* The client will automatically attempt to reconnect on disconnections,
* configurable via {@link WmClientOptions.reconnectInterval}.
*/

@@ -404,0 +404,0 @@ constructor(_options?: WmClientOptions | undefined);

@@ -46,9 +46,11 @@ "use strict";

/**
* Instantiates client.
* Instantiates client and attempts to connect to IPC server.
*
* Connection to the IPC server is established when sending the first
* message or by explicitly calling {@link connect}.
* The client will automatically attempt to reconnect on disconnections,
* configurable via {@link WmClientOptions.reconnectInterval}.
*/
constructor(_options) {
this._options = _options;
this.connect().catch(() => {
});
}

@@ -55,0 +57,0 @@ DEFAULT_PORT = 6123;

{
"name": "glazewm",
"version": "1.5.0",
"version": "1.5.1",
"description": "Library for inter-process communication (IPC) with GlazeWM.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -76,8 +76,10 @@ import {

/**
* Instantiates client.
* Instantiates client and attempts to connect to IPC server.
*
* Connection to the IPC server is established when sending the first
* message or by explicitly calling {@link connect}.
* The client will automatically attempt to reconnect on disconnections,
* configurable via {@link WmClientOptions.reconnectInterval}.
*/
constructor(private _options?: WmClientOptions) {}
constructor(private _options?: WmClientOptions) {
this.connect().catch(() => {});
}

@@ -84,0 +86,0 @@ /**

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