> ## Documentation Index
> Fetch the complete documentation index at: https://docs.emitkit.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SDK Installation

> Install and configure the EmitKit SDK

## Installation

<CodeGroup>
  ```bash npm theme={null}
  npm install @emitkit/js
  ```

  ```bash pnpm theme={null}
  pnpm add @emitkit/js
  ```

  ```bash yarn theme={null}
  yarn add @emitkit/js
  ```
</CodeGroup>

## Requirements

* Node.js 16+
* TypeScript 4.5+ (optional)

## Basic Setup

```typescript theme={null}
import { EmitKit } from '@emitkit/js';

const client = new EmitKit('emitkit_xxxxxxxxxxxxxxxxxxxxx');
```

See [Quick Start](/quickstart) for a complete guide.
