Provides a Swift library for connecting to and interacting with WebSocket servers on iOS and macOS.
Starscream is a conforming WebSocket (RFC 6455) client library written in Swift, supporting non-blocking operations via GCD and secure connections with TLS/WSS. Developers can integrate it by `import Starscream`, then creating a `WebSocket` instance with a `URLRequest` and calling `socket.connect()` to establish communication. Event handling is managed through a delegate or an `onEvent` closure, allowing reception of text, binary, and connection status events.
Provides a Swift library for connecting to and interacting with WebSocket servers on iOS and macOS.
Swift developers requiring a standard-compliant WebSocket client for their iOS or macOS applications.