Flipt Client SDKs
This repository centralizes the client-side SDKs for Flipt.
These client-side SDKs are responsible for evaluating context and returning the results of the evaluation. They enable developers to easily integrate Flipt into their applications without relying on server-side evaluation.
Overall documentation for the client SDKs can be found on our website.
Also, check out our introductory blog post on these client-side SDKs.
Versions
There are two architectures for the client SDKs:
FFI
The Foreign Function Interface (FFI) versions of the client SDKs are currently available.
Supported Architectures
The FFI-based SDKs are currently supported on the following OSes/architectures:
- Linux x86_64
- Linux arm64
- MacOS x86_64
- MacOS arm64
- Windows x86_64
- iOS (Swift)
- Android (Kotlin)
WASM
The WebAssembly (WASM) versions of the client SDKs are OS and architecture-agnostic.
Architecture
The client SDKs are designed to be embedded in end-user applications.
The evaluation logic is written in Rust and can be found in the flipt-evaluation directory.
The language clients used in end-user applications wrap the engines can be found in the flipt-client-{language}
directories.
See ARCHITECTURE.md.
Language Support
We are constantly growing our list of supported languages.
Released
Currently, we support the following languages/platforms:
Language/Platform | Version | Implementation |
---|---|---|
Android | FFI | |
C# | FFI | |
Flutter/Dart | FFI | |
Go | WASM | |
Java | FFI | |
JavaScript | WASM | |
Python | FFI | |
React (Web) | WASM | |
Ruby | FFI | |
Swift | FFI |
Documentation for each client can be found in the README of that client's directory.
Planned
Languages we are planning to support:
Help Wanted
Languages we would like to support but lack expertise in:
Want to see a client in a language we don't support? Open an issue and let us know!
Alternatively, if you have experience in any of the above languages/platforms, we welcome all contributions!! ❤️
Installation
Please take a look at each client's README for installation and usage instructions.
Use Cases
Why you may prefer to use a client-side SDK over our server-side SDKs:
- You want extremely low-latency evaluation and high throughput.
- You want to reduce the load in your network by not having each client make a request to the Flipt server for each evaluation.
- You need evaluation to occur in-process for some reason (e.g., you are evaluating a flag in a web worker).
Performance
We have done some simple benchmarking to test the performance of the client SDKs vs the server SDKs with Flipt running locally.
Here we performed 1000 evaluations of a flag using the client SDKs and the server SDKs. The client SDKs were able to perform the evaluations in a fraction of the time it took the server SDKs. This is because the client SDKs can perform the evaluations in memory without having to make a request to the Flipt server.
While the server SDKs performed evaluations in the range of 0-14ms, the client SDKs performed evaluations in the range of 0-0.1ms (100 microseconds).
Contributing
See CONTRIBUTING.md.
License
All code in this repository is licensed under the MIT License.
Acknowledgements
- Unleash/yggdrasil - While we independently decided upon using Rust + FFI as the engine for the client SDKs, we were inspired by the design of the yggdrasil project from Unleash.