You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Streamlined the library to focus solely on WebSocket utilities, removing any DOM-related code.
- Added support for custom WebSocket implementations via the new WebSocketImpl option.
- Enhanced error handling and logging capabilities.
- Updated usage examples in the README to reflect the latest API changes.
- Documented breaking changes and improvements in the README.
A TypeScript library providing WebSocket utilities for Nostr applications, with robust connection handling, automatic reconnection, and channel-based messaging.
9
+
A TypeScript library providing WebSocket utilities for Nostr applications, focusing on robust connection handling, automatic reconnection, and channel-based messaging. This library has been streamlined to remove any DOM-related code, enhancing performance and maintainability.
10
10
11
11
## Features
12
12
@@ -25,12 +25,13 @@ A TypeScript library providing WebSocket utilities for Nostr applications, with
25
25
npm install nostr-websocket-utils
26
26
```
27
27
28
-
## Breaking Changes in v0.2.1
28
+
## Breaking Changes in v0.2.2
29
29
30
-
- Added UUID support for message tracking and correlation
31
-
- Fixed WebSocket mock implementation in tests
32
-
- Improved TypeScript type safety across the codebase
33
-
- Enhanced error handling for WebSocket connections
30
+
- Removed all DOM-related code to focus solely on WebSocket functionality.
31
+
- Added UUID support for message tracking and correlation.
32
+
- Introduced a new `WebSocketImpl` option for custom WebSocket implementations.
33
+
- Improved TypeScript type safety across the codebase.
34
+
- Enhanced error handling for WebSocket connections.
0 commit comments