RxWebSocket alternatives and similar libraries
Based on the "Reactive Programming" category.
Alternatively, view RxWebSocket alternatives based on common mentions on social networks and blogs.
-
OpenCombine
Open source implementation of Apple's Combine framework for processing values over time. -
Tokamak
DISCONTINUED. SwiftUI-compatible framework for building browser apps with WebAssembly and native apps for other platforms [Moved to: https://github.com/TokamakUI/Tokamak] -
Katana
DISCONTINUED. Swift Apps in a Swoosh! A modern framework for creating iOS apps, inspired by Redux. -
Interstellar
DISCONTINUED. Simple and lightweight Functional Reactive Coding in Swift for the rest of us. :large_orange_diamond: -
Verge
๐ฃ A robust Swift state-management framework designed for complex applications, featuring an integrated ORM for efficient data handling. -
VueFlux
:recycle: Unidirectional State Management Architecture for Swift - Inspired by Vuex and Flux -
RxReduce
DISCONTINUED. Lightweight framework that ease the implementation of a state container pattern in a Reactive Programming compliant way. -
LightweightObservable
๐ฌ A lightweight implementation of an observable sequence that you can subscribe to. -
ReactiveArray
An array class implemented in Swift that can be observed using ReactiveCocoa's Signals -
STDevRxExt
STDevRxExt contains some extension functions for RxSwift and RxCocoa which makes our live easy. -
RxAlamoRecord
RxAlamoRecord combines the power of the AlamoRecord and RxSwift libraries to create a networking layer that makes interacting with API's easier than ever reactively.
SaaSHub - Software Alternatives and Reviews
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of RxWebSocket or a related project?
README
RxWebSocket
Reactive extensions for websockets.
A lightweight abstraction layer over Starscream to make it reactive.
Installation
RxWebSocket is available through CocoaPods and Carthage. To install it, simply add the following line to your depedencies file:
Cocoapods
pod "RxWebSocket"
Carthage
github "fjcaetano/RxWebSocket"
Usage
Every websocket event will be sent to the stream
which is an Observable<StreamEvent>
.
public enum StreamEvent {
case connect
case disconnect(Error?)
case pong
case text(String)
case data(Data)
}
You may receive and send text events by subscribing to the text
property:
let label = UILabel()
socket.rx.text
.bind(to: label.rx.text)
sendButton.rx.tap
.flatMap { textField.text ?? "" }
.bind(to: socket.rx.text)
For further details, check the Example project.
Contributing
After cloning the project, pull all submodules with
git submodule update --init --recursive
Requirements
RxWebSocket relies on the following for development:
To install all dependencies without hassles just run:
./install_dependencies.sh
Which will install all the dependencies and virtual envs if necessary.
Running Tests
Xcode and Fastlane will take care of starting and stopping websocket echoservers for testing, however if you find that tests are timing out, this is usually a sign that the server is not running. If so, you can manage it running
./server.sh {start|stop|restart|status}
This will tell wstests to launch an echo server on 127.0.0.1:9000. If this port
is unusable for you by any reason, you may change it in the server.sh
file.
Upgrading to a new Swift version
Upgrading a new Swift version requires upgrading the dependencies as well. Since the RxWebSocket is distributed through Cocoapods, Carthage and Swift Package Manager, the dependencies must be upgraded in the corresponding spec file for the three platforms:
Cocoapods
In RxWebSocket.podspec, update swift_version
and the dependencies' versions at the end of the file
Carthage
Upgrade the dependencies' versions in Cartfile
Swift Package Manager
Upgrade the dependencies' versions in Package.swift
Housekeeping
Before commiting, make sure to run, at least, the test
lane on Fastlane. This will run all iOS
tests.
If you want to be thorough, which is recommended and appreciated, run the ci
lane, which is the
same lane Travis runs when testing PRs. This lane will run tests for iOS, tvOS and macOS, as well as
lint the project for the three package managers. If this lane passes, you can be 100% sure everything
is running as smoothly as possible.
Help Wanted
Do you love RxWebsocket and work actively on apps that use it? We'd love if you could help us keep improving it! Feel free to message us or to start contributing right away!
License
RxWebSocket is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the RxWebSocket README section above
are relevant to that project's source code only.