Skip to main content

Overview

In addition to the client-side web experimentation capabilities, Kameleoon has extensive support for server-side feature management and experimentation on web apps, mobile apps, TV and gaming apps, or any other apps connected to the internet.

Here are a few of the additional features you can implement using any of our SDKs:

tip

Join our Slack Community for questions about product features and get access to the latest updates.

Supported platforms

Kameleoon continually adds support for new languages and enhances our existing SDKs with new features and methods. The minimum version you need for some SDK features varies depending on the language. The SDK compatibility table shows which features are available in each language and the minimum SDK version you need to implement it. For comprehensive version history, see the changelog file in the SDK Github repository. We recommend subscribing to receive email notifications.

Server-side SDKs

SDKJavaC#PHPNodeJSRubyPythonGo
Real-time streaming2.0.62.2.0-1.0.02.1.02.0.02.1.0
Feature experiments3.0.03.0.03.0.01.0.02.0.02.1.02.0.0
Multi-environment feature flags2.0.42.1.42.0.91.0.01.0.101.0.21.0.5
Feature flag variables2.0.42.1.72.0.91.0.01.0.101.0.21.0.5
Predefined targeting conditions2.0.62.2.02.1.31.0.02.0.02.0.02.0.0
Retrieve all targeted feature flags2.0.62.1.73.0.01.0.02.0.02.0.02.0.0
Retrieve all feature flags variables3.0.02.1.93.0.01.0.02.0.02.0.02.0.0
Retrieve data for a user key (Data API Map endpoint)2.0.52.1.52.1.01.0.01.1.01.0.31.0.6
Retrieve browsing data for a user (Data API Visitor endpoint)3.2.03.3.03.3.02.2.02.2.02.4.02.3.0
Analytics integration3.1.03.1.03.1.02.1.02.1.02.2.02.1.0
Legal consent management4.0.04.0.04.0.03.1.03.0.03.0.03.0.0
Data warehouse integration4.1.04.3.04.1.02.8.03.1.03.1.03.1.0
Cross-device experimentation4.1.04.3.04.1.02.8.03.1.03.1.03.1.0

Client-side or mobile SDKs

SDKAndroid (Kotlin/Java)iOS (Swift)JavaScript/TypeScriptFlutterReact/React Native
Real-time streaming2.1.02.1.01.0.02.0.06.0.0
Feature experiments3.0.03.0.01.0.02.0.06.0.0
Multi-environment feature flags2.0.122.0.141.0.01.0.36.0.0
Feature flag variables2.0.122.0.141.0.01.0.31.0.0
Predefined targeting conditions2.1.12.1.21.0.02.0.04.0.0
Retrieve all targeted feature flags2.1.12.1.21.0.02.0.06.0.0
Retrieve all feature flags variables2.1.12.1.31.0.02.0.01.0.0
Retrieve data for a user key (Data API Map endpoint)2.0.132.0.151.0.01.0.32.1.0
Retrieve browsing data for a user (Data API Visitor endpoint)3.2.04.1.01.4.07.2.2N/A
Legal consent management4.0.04.0.02.1.0-8.1.0
Data warehouse integration3.3.03.1.01.8.0-7.6.0
Cross-device experimentation3.3.03.1.01.8.0-7.6.0
note

All of our SDKs are zero-latency SDKs, which means client-side code performs all campaign allocations. Because the allocations are not completed using a remote server call, the impact on your website performance is under a millisecond compared to ~50 ms on average for API-based technologies.

Serverless edge compute platforms

Kameleoon also supports feature management and experimentation at the edge by providing a set of starter kits to implement feature flags and experiments using serverless edge compute platforms offered by modern Content Delivery Networks (CDNs), such as Akamai EdgeWorkers, AWS Lambda@Edge, Cloudflare Workers, Fastly Compute@Edge and Vercel Edge Functions.

ModuleCurrent VersionRelease Date
Fastly starter kit0.2.0April 2023
Cloudflare Workers0.2.0April 2023
Akamai EdgeWorkersComing soon
AWS Lambda@EdgeOctober 2023
Vercel Edge Functions0.1.0April 2023

Web Server Modules

ModuleCurrent VersionRelease Date
Nginx web server module1.0.24September 2022
caution

The web server module for Nginx currently only supports experiments.

API

If our SDKs do not support the language used in your application, you can either create a service yourself using one of our SDKs or create a bespoke implementation of the API.

In cases where low latency is a priority while updating targeting conditions and configurations on the fly, choosing an API implementation against an SDK implementation comes with a significant increase in latency. Kameleoon supports all modern JavaScript frameworks, such as Angular, Vue.js and Next.js so you can always use a JavaScript based SDK for front-end work instead of using the API approach.

Visit our API documentation to learn more about the APIs.

Selecting a JavaScript SDK

In addition to the JavaScript/TypeScript SDK, we also provide other Javascript-based SDKs: the React SDK, React Native SDK, and NodeJS SDK. Most JavaScript frameworks work with the JavaScript/TypeScript SDK, but there are some that are better suited to one of the other SDKs depending on the implementation. For example, apps that use server-side rendering (SSR) or Edge integrations should use the NodeJS SDK. Here are the recommended SDKs based on JavaScript frameworks.

FrameworkRecommended SDK
Edge integrations (any framework)NodeJS SDK
Angular/AngularJSJavaScript/TypeScript SDK
ExpressNodeJS SDK
DenoNodeJS SDK
IonicJavaScript/TypeScript SDK
JQueryJavaScript/TypeScript SDK
NestJSNodeJS SDK
NextJS (with SSR)NodeJS SDK
NextJS (without SRR)React SDK or JavaScript/TypeScript SDK
NodeJSNodeJS SDK
Plain JavaScriptJavaScript/TypeScript SDK
React NativeReact Native SDK
ReactReact SDK or JavaScript/TypeScript SDK
Svelte (with SSR)NodeJS SDK
Svelte (without SSR)JavaScript/TypeScript SDK
Vue (with SSR)NodeJS SDK
Vue (without SSR )JavaScript/TypeScript SDK