Contents

tesseract-one/websocket.swift

We have good WebSocket libraries for Apple platforms, but we need it on Linux too.

Goals

We have good WebSocket libraries for Apple platforms, but we need it on Linux too. This library based on Apple Swift NIO framework, which allows it to be cross-platform.

Getting started

Installation

Package Manager

Add the following dependency to your Package.swift:

.package(url: "https://github.com/tesseract-one/WebSocket.swift.git", from: "0.2.0")

Run swift build and build your app.

CocoaPods

Add the following to your Podfile:

pod 'TesseractWebSocket.swift', '~> 0.2'

Then run pod install

Examples

Echo Connection
import Foundation
import WebSocket

let socket = WebSocket()

socket.onConnected = { ws in
  ws.send("hello")
}

socket.onData = { data, ws in
  print("Received", data)
  assert(data.text! == "hello")
  ws.disconnect()
}

socket.connect(url: URL(string: "wss://echo.websocket.org")!)

WARNING! You should always disconnect WebSocket. It will leak otherwise! And will leak thread too!

Author

(@tesseract_one)

License

WebSocket.swift is available under the Apache 2.0 license. See the LICENSE file for more information.

Package Metadata

Repository: tesseract-one/websocket.swift

Default branch: main

README: README.md