Awesome
FeathersSwiftRest
What is FeathersSwiftRest?
FeathersSwiftRest is a ReactiveSwift REST HTTP provider for FeathersSwift.
Installation
Cocoapods
pod `FeathersSwiftRest`
Carthage
Add the following line to your Cartfile:
github "feathersjs-ecosystem/feathers-swift-rest"
Usage
To use FeathersSwiftRest, create an instance of RestProvider
and initialize your FeathersSwift application:
let feathersRestApp = Feathers(provider: RestProvider(baseURL: URL(string: "https://myawesomefeathersapi.com")!))
That's it! Your feathers application will now support a REST API.