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

# Headless Web SDK Installation

> Install Suki Headless Web SDK in your React application

We have modularized the Suki Headless Web SDK into **framework-specific packages** so you only need to install the one that fits your environment.

The Headless Web SDK is built for modern React applications and requires an [ES6 compatible browser](https://caniuse.com/?search=es6).

## Prerequisites

For the rest of this documentation, we will assume you have completed the [Partner onboarding](/documentation/partner-onboarding) process.

Refer to the [Prerequisites](/headless-web-sdk/prerequisites) guide for more information.

## Install the package for React

For React applications, you should use the `@suki-sdk/platform-react` package. It includes React-specific hooks that make it easy to integrate Suki's headless web SDK functionality into your application.

To install the package, run one of the following commands:

<CodeGroup title="Install the @suki-sdk/platform-react package">
  ```shell pnpm theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
  pnpm add @suki-sdk/platform-react
  ```

  ```shell npm theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
  npm install @suki-sdk/platform-react
  ```

  ```shell yarn theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
  yarn add @suki-sdk/platform-react
  ```
</CodeGroup>

## Next steps

<Icon icon="file-lines" iconType="solid" /> Read the [Quickstart guide](/headless-web-sdk/quickstart) to get started with the Suki Headless Web SDK.
