> ## Documentation Index
> Fetch the complete documentation index at: https://luminouslabs-cc5545c6-swen-add-code-runner.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Client Development

> Overview of Rust and TypeScript SDKs for client side development.

<table>
  <thead>
    <tr>
      <th width="120" />

      <th width="250" className="text-left" />

      <th width="280" className="text-left" />
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>**TypeScript**</td>
      <td>[@lightprotocol/stateless.js](https://lightprotocol.github.io/light-protocol/stateless.js/index.html)</td>
      <td>Client SDK for Compressed Accounts</td>
    </tr>

    <tr>
      <td>**TypeScript**</td>
      <td>[@lightprotocol/compressed-token](https://lightprotocol.github.io/light-protocol/compressed-token/index.html)</td>
      <td>Client SDK for Compressed Tokens</td>
    </tr>

    <tr>
      <td>**Rust**</td>
      <td>[light-client](https://docs.rs/light-client)</td>
      <td>Client SDK for Compressed Accounts and Tokens</td>
    </tr>
  </tbody>
</table>

### Installation

<CodeGroup>
  ```bash npm theme={null}
  npm install --save \
      @lightprotocol/stateless.js \
      @lightprotocol/compressed-token \
      @solana/web3.js \
      @lightprotocol/zk-compression-cli
  ```

  ```bash Yarn theme={null}
  yarn add \
      @lightprotocol/stateless.js \
      @lightprotocol/compressed-token \
      @solana/web3.js \
      @lightprotocol/zk-compression-cli
  ```
</CodeGroup>

### Dependencies

```toml theme={null}
[dependencies]
light-client = "0.16.0"
light-sdk = "0.16.0"
```

### Examples and Guide

<CardGroup>
  <Card horizontal icon="github" title="example-web-client" href="https://github.com/Lightprotocol/example-web-client" />

  <Card horizontal icon="github" title="example-nodejs-client" href="https://github.com/Lightprotocol/example-nodejs-client" />
</CardGroup>

<Card title="Build your client with this guide." icon="chevron-right" color="#0066ff" href="/client-library/client-guide" horizontal />
