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

# JavaScript

> Install the Threadify SDK for JavaScript/TypeScript projects

### Installation

<CodeGroup>
  ```bash npm theme={null}
  npm install @threadify/sdk
  ```

  ```bash yarn theme={null}
  yarn add @threadify/sdk
  ```

  ```bash pnpm theme={null}
  pnpm add @threadify/sdk
  ```
</CodeGroup>

## Import

<CodeGroup>
  ```javascript ES Modules (recommended) theme={null}
  import { Threadify } from '@threadify/sdk';
  ```

  ```javascript CommonJS theme={null}
  const { Threadify } = require('@threadify/sdk');
  ```
</CodeGroup>

#### Next Steps

<CardGroup cols={2}>
  <Card title="Connecting" icon="plug" href="/core-concepts/connecting">
    Connect to Threadify Engine with your API key
  </Card>

  <Card title="Tracking Workflows" icon="chart-line" href="/core-concepts/tracking-workflows">
    Start tracking your first workflow
  </Card>
</CardGroup>
