GitPedia

RxCodable

RxSwift wrapper for Codable

From devxoul·Updated April 29, 2025·View on GitHub·

RxCodable is under MIT license. See the [LICENSE](LICENSE) for more info. The project is written primarily in Swift, distributed under the MIT License license, first published in 2017. Key topics include: codable, moya, rxswift.

Latest release: 1.0.0
June 15, 2019View Changelog →

RxCodable

Swift
CocoaPods
Build Status
codecov

RxSwift wrapper for Codable.

At a Glance

swift
struct User: Codable { var name: String } // Data -> User Observable<Data>.just(jsonData).map(User.self) Single<Data>.just(jsonData).map(User.self) Maybe<Data>.just(jsonData).map(User.self) // String -> User Observable<String>.just(jsonString).map(User.self) Single<String>.just(jsonString).map(User.self) Maybe<String>.just(jsonString).map(User.self)

Installation

Contributing

Any discussions and pull requests are welcomed 💖

To create a Xcode project:

console
$ swift package generate-xcodeproj

License

RxCodable is under MIT license. See the LICENSE for more info.

Contributors

Showing top 2 contributors by commit count.

View all contributors on GitHub →

This article is auto-generated from devxoul/RxCodable via the GitHub API.Last fetched: 6/23/2026