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

socket.io-client

Package Overview
Dependencies
Maintainers
2
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

socket.io-client - npm Package Compare versions

Comparing version 4.7.2 to 4.7.3

build/cjs/browser-entrypoint.d.ts

1

build/esm-debug/index.d.ts

@@ -17,3 +17,2 @@ import { Manager, ManagerOptions } from "./manager.js";

declare function lookup(uri: string, opts?: Partial<ManagerOptions & SocketOptions>): Socket;
declare function lookup(uri: string | Partial<ManagerOptions & SocketOptions>, opts?: Partial<ManagerOptions & SocketOptions>): Socket;
/**

@@ -20,0 +19,0 @@ * Protocol version.

{
"name": "socket.io-client",
"version": "4.4.0",
"type": "module"
}

@@ -87,3 +87,3 @@ import { Packet } from "socket.io-parser";

/**
* A unique identifier for the session.
* A unique identifier for the session. `undefined` when the socket is not connected.
*

@@ -99,3 +99,3 @@ * @example

*/
id: string;
id: string | undefined;
/**

@@ -102,0 +102,0 @@ * The session ID used for connection state recovery, which must not be shared (unlike {@link id}).

@@ -17,3 +17,2 @@ import { Manager, ManagerOptions } from "./manager.js";

declare function lookup(uri: string, opts?: Partial<ManagerOptions & SocketOptions>): Socket;
declare function lookup(uri: string | Partial<ManagerOptions & SocketOptions>, opts?: Partial<ManagerOptions & SocketOptions>): Socket;
/**

@@ -20,0 +19,0 @@ * Protocol version.

{
"name": "socket.io-client",
"version": "4.4.0",
"type": "module"
}

@@ -87,3 +87,3 @@ import { Packet } from "socket.io-parser";

/**
* A unique identifier for the session.
* A unique identifier for the session. `undefined` when the socket is not connected.
*

@@ -99,3 +99,3 @@ * @example

*/
id: string;
id: string | undefined;
/**

@@ -102,0 +102,0 @@ * The session ID used for connection state recovery, which must not be shared (unlike {@link id}).

/*!
* Socket.IO v4.7.2
* (c) 2014-2023 Guillermo Rauch
* Socket.IO v4.7.3
* (c) 2014-2024 Guillermo Rauch
* Released under the MIT License.

@@ -5,0 +5,0 @@ */

/*!
* Socket.IO v4.7.2
* (c) 2014-2023 Guillermo Rauch
* Socket.IO v4.7.3
* (c) 2014-2024 Guillermo Rauch
* Released under the MIT License.

@@ -5,0 +5,0 @@ */

/*!
* Socket.IO v4.7.2
* (c) 2014-2023 Guillermo Rauch
* Socket.IO v4.7.3
* (c) 2014-2024 Guillermo Rauch
* Released under the MIT License.

@@ -5,0 +5,0 @@ */

{
"name": "socket.io-client",
"version": "4.7.2",
"version": "4.7.3",
"description": "Realtime application framework client",

@@ -25,12 +25,21 @@ "keywords": [

".": {
"types": "./build/esm/index.d.ts",
"import": {
"types": "./build/esm/index.d.ts",
"node": "./build/esm-debug/index.js",
"default": "./build/esm/index.js"
},
"require": "./build/cjs/index.js"
"require": {
"types": "./build/cjs/index.d.ts",
"default": "./build/cjs/index.js"
}
},
"./debug": {
"import": "./build/esm-debug/index.js",
"require": "./build/cjs/index.js"
"import": {
"types": "./build/esm/index.d.ts",
"default": "./build/esm-debug/index.js"
},
"require": {
"types": "./build/cjs/index.d.ts",
"default": "./build/cjs/index.js"
}
}

@@ -37,0 +46,0 @@ },

Sorry, the diff of this file is too big to display

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