All Projects → devxoul → Rxcodable

devxoul / Rxcodable

Licence: mit
RxSwift wrapper for Codable

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Rxcodable

Boilerplate
Swift 4 and Using MVVM architecture(Rxswfit + Moya) to implement Github client demo.
Stars: ✭ 102 (-7.27%)
Mutual labels:  rxswift, moya
Swift-Viper-Weather-App
iOS app with Clean Architecture
Stars: ✭ 20 (-81.82%)
Mutual labels:  rxswift, moya
Moyasugar
🍯 Syntactic sugar for Moya
Stars: ✭ 165 (+50%)
Mutual labels:  rxswift, moya
Swifthub
GitHub iOS client in RxSwift and MVVM-C clean architecture
Stars: ✭ 2,330 (+2018.18%)
Mutual labels:  rxswift, moya
Rxswiftexamples
Examples and resources for RxSwift.
Stars: ✭ 930 (+745.45%)
Mutual labels:  rxswift, moya
Moya Modelmapper
ModelMapper bindings for Moya.
Stars: ✭ 143 (+30%)
Mutual labels:  rxswift, moya
iOS Started Kit
iOS Started Kit: Clean Architecture + RxSwift + Moya
Stars: ✭ 12 (-89.09%)
Mutual labels:  rxswift, moya
Moyamapper
快速解析模型工具,支持RxSwift。同时支持缓存功能 【相关手册 https://MoyaMapper.github.io 】
Stars: ✭ 115 (+4.55%)
Mutual labels:  rxswift, moya
Swift
💻 Swift - Boilerplate Front : RxSwift, ReactorKit, JWT, Moya (Beta)
Stars: ✭ 17 (-84.55%)
Mutual labels:  rxswift, moya
GitTime
GitTime is GitHub Tracking App. Using ReactorKit, RxSwift, Moya.
Stars: ✭ 55 (-50%)
Mutual labels:  rxswift, moya
Moya-Gloss
Gloss bindings for Moya
Stars: ✭ 37 (-66.36%)
Mutual labels:  rxswift, moya
Rxnetwork
A swift network library based on Moya/RxSwift.
Stars: ✭ 43 (-60.91%)
Mutual labels:  rxswift, moya
Evreflection
Reflection based (Dictionary, CKRecord, NSManagedObject, Realm, JSON and XML) object mapping with extensions for Alamofire and Moya with RxSwift or ReactiveSwift
Stars: ✭ 954 (+767.27%)
Mutual labels:  rxswift, moya
Ios
A sample project demonstrating MVVM, RxSwift, Coordinator Pattern, Dependency Injection
Stars: ✭ 49 (-55.45%)
Mutual labels:  rxswift, moya
Adaptivecardui
Snippets of UI, authored in JSON and rendered with SwiftUI
Stars: ✭ 73 (-33.64%)
Mutual labels:  codable
Rxstorekit
StoreKit library for RxSwift
Stars: ✭ 96 (-12.73%)
Mutual labels:  rxswift
Cleverbot
iOS Messaging Application using Cleverbot and ReactorKit
Stars: ✭ 74 (-32.73%)
Mutual labels:  rxswift
Rxtodo
iOS Todo Application using RxSwift and ReactorKit
Stars: ✭ 1,186 (+978.18%)
Mutual labels:  rxswift
Generic Json Swift
A simple Swift library for working with generic JSON structures
Stars: ✭ 95 (-13.64%)
Mutual labels:  codable
Simpleapiclient Ios
A configurable api client based on Alamofire4 and RxSwift4 for iOS
Stars: ✭ 68 (-38.18%)
Mutual labels:  rxswift

RxCodable

Swift CocoaPods Build Status codecov

RxSwift wrapper for Codable.

At a Glance

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:

$ swift package generate-xcodeproj

License

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].