To learn how to install and run Flipt, see the Installation
documentation.
Server-Side Evaluation
Server-side evaluation is the most common way to evaluate feature flags. This is where your application makes a request to Flipt to evaluate a feature flag and Flipt responds with the result of the evaluation. Flipt exposes two different APIs for performing server-side evaluation: The choice of which API to use is up to you. Both APIs are fully supported and are functionally equivalent. The REST API is easier to get started with, but the GRPC API is more performant.REST API
Flipt comes equipped with a fully functional REST API. The Flipt UI is completely backed by this same API. This means that anything that can be done in the Flipt UI can also be done via the REST API. The Flipt REST API can also be used with any language that can make HTTP requests. This means that you don’t need have to use one of our official clients to integrate your application with Flipt. The latest version of the REST API is fully documented using the OpenAPI v3 specification as well as the above API Reference. See all official REST SDKs as well as how to generate your own in the the REST SDK section.GRPC API
Since Flipt is a GRPC enabled application, you can connect to it using the GRPC protocol. This means that you can use any language that has a GRPC client implementation to integrate with Flipt.GRPC requires HTTP/2 in your environment.
Client-Side Evaluation
Client-side evaluation is another way Flipt supports evaluating feature flags. This is where your application has a local copy of the feature flag rules and evaluates them locally.Our client-side SDKs are currently in beta.We’re actively working on improving them and adding more languages. If you have any feedback, feature or language requests, please let us know by opening an issue in our GitHub repository.
- You want to reduce the number of requests your application makes to Flipt for feature flag evaluations
- You want to reduce the latency of feature flag evaluations