# 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](https://koople.gitbook.io/koople/sdk-reference/javascript#getting-started)
* [React](https://koople.gitbook.io/koople/sdk-reference/react#getting-started)
* [C#](https://koople.gitbook.io/koople/sdk-reference/csharp#getting-started)
* [Java](https://koople.gitbook.io/koople/sdk-reference/java#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: 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:

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

The question should be specific, self-contained, and written in natural language.
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.
