For the complete documentation index, see llms.txt. This page is also available as Markdown.

Developer Guide

With a single SDK integration, you can use all the features provided by Hackle.

Quick Start

You can install the SDK and complete variation distribution for A/B Tests in just a few steps.

Get Started →

// SDK initialization
const hackleClient = Hackle.createInstance("YOUR_SDK_KEY");

// A/B test variation distribution
const variation = hackleClient.variation(EXPERIMENT_KEY, userId);
if (variation === "A") {
  // Group A
} else if (variation === "B") {
  // Group B
}

Supported SDKs

Hackle provides SDKs for a variety of platforms.

Are you using Cafe24?

Check out the Cafe24 Integration Guide right away.

Last updated