> For the complete documentation index, see [llms.txt](https://koople.gitbook.io/koople/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://koople.gitbook.io/koople/master.md).

# Getting Started

Welcome to Koople! Koople is the easiest, fastest and most confident way to release your projects.&#x20;

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 related events.

You only need a few minutes to get started with Koople.

### Configure your first feature flag on Koople:

1. Create your Koople account. [Try it for free!](https://www.koople.io/auth/signup)
2. Check your email for the validation email.
3. [Sign in](https://www.koople.io/auth/login).
4. Create your first organization.
5. Create your first project.
6. Create your first feature flag.
7. Enable the feature for all users.

### Choose and install your SDK client:

* [Javascript](/koople/sdk-reference/javascript.md#getting-started)
* [React](/koople/sdk-reference/react.md#getting-started)
* [C#](/koople/sdk-reference/csharp.md#getting-started)
* [Java](/koople/sdk-reference/java.md#getting-started)

### Connect your app

{% tabs %}
{% tab title="Javascript" %}

```javascript
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.
    }
});
```

{% endtab %}

{% tab title="C#" %}

```csharp
var kClient = KClient.Initialize('YOUR_API_KEY');

var isEnabled = kClient.IsEnabled('myAwesomeFeature');
if (isEnabled) {
    // Do something when the feature is enabled.
} else {
    // Do something when the feature is not enabled.
}
```

{% endtab %}

{% tab title="Java" %}

```java
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.
}
```

{% endtab %}
{% endtabs %}

Congratulations! You have completed your first feature flag successfully.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://koople.gitbook.io/koople/master.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
