Koople
Search
K

Getting Started

Welcome to Koople! Koople is the easiest, fastest and most confident way to release your projects.
Koople gives you different tools to manage your releases, change your settings dynamically, define your target audience to test your new features and get your latest events related to it.
You only need a few minutes to get started with Koople.

Configure your first feature flag on Koople:

  1. 1.
    Create your Koople account. Try for free!
  2. 2.
    Check your email for the validation email.
  3. 3.
  4. 4.
    Create your first organization.
  5. 5.
    Create your first project.
  6. 6.
    Create your first feature flag.
  7. 7.
    Enable the feature for all users.

Choose and install your SDK client:

Connect your app

Javascript
C#
Java
import {PFClient} from "@pataflags/sdk-js";
const pfclient = PFClient.initialize('YOUR_API_KEY', {});
pfclient.onReady(() => {
const isEnabled = pfclient.isEnabled('myAwesomeFeature');
if (isEnabled) {
// Do something when the feature is enabled.
} else {
// Do something when the feature is not enabled.
}
});
var pfclient = PfClient.Initialize('YOUR_API_KEY');
var isEnabled = pfclient.IsEnabled('myAwesomeFeature');
if (isEnabled) {
// Do something when the feature is enabled.
} else {
// Do something when the feature is not enabled.
}
PFClient pfclient = PFClient.initialize('YOUR_API_KEY');
Boolean isEnabled = pfclient.isEnabled('myAwesomeFeature');
if (isEnabled) {
// Do something when the feature is enabled.
} else {
// Do something when the feature is not enabled.
}
Congratulations! You have completed your first feature flag successfully.
Last modified 2yr ago