Home
Softono

Feature Toggling

Open source MIT Swift
28
Stars
4
Forks
0
Issues
1
Watchers
7 years
Last Commit

 About Feature Toggling

Lightweight iOS feature toggling system

Platforms

Web Self-hosted macOS iOS

Languages

Swift

Links

Need Help Installing Feature Toggling?

We provide expert installation service for this software. Our team will install, configure, and secure Feature Toggling on your server. plans start at just $30.

Feature Toggling

View on GitHub

Platform Swift 5.0 GitHub license Build Status

Overview

It's a lightweight example of iOS feature toggling system inspired by Martin Fowler. If you have any questions you can ask me in telegram.

You can also watch the video of my speech on YouTube (in Russian).

Usage

Initialize feature service somewhere in your code:

private let featureService = FeaturesService()

Get features from backend:

featureService.getFeatures {}

Check if feature is enabled:

if featureService.enabled(.myFeature) {
  // doSomething
}

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE file for details.