FeathersSwiftRest is a ReactiveSwift REST HTTP provider for FeathersSwift.
pod `FeathersSwiftRest`
Add the following line to your Cartfile:
github "feathersjs-ecosystem/feathers-swift-rest"
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.