Skip to content

feathersjs-ecosystem/feathers-swift-rest

Repository files navigation

FeathersSwiftRest

Carthage compatible CocoaPods compatible GitHub release Swift 4.0.x platforms Build Status

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.