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

# Get started

> Learn how to setup Zodaf on your project

<Info>
  **Prerequisite**: You must have a React project initialized and zod
  installed on it to use Zodaf.
</Info>

Step 1. Install Zodaf on your project:

<CodeGroup>
  ```bash npm theme={null}
  npm i @zodaf/react
  ```

  ```bash pnpm theme={null}
  pnpm i @zodaf/react
  ```

  ```bash yarn theme={null}
  yarn add @zodaf/react
  ```
</CodeGroup>

Step 2. To initialize Zodaf configuration, run the following command:

<CodeGroup>
  ```bash npm theme={null}
  npx @zodaf/react init
  ```

  ```bash pnpm theme={null}
  pnpm dlx @zodaf/react init
  ```

  ```bash yarn theme={null}
  yarn dlx @zodaf/react init
  ```
</CodeGroup>

Your project can now use `Zodaf`.
