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

# Installation

> Current npm publication status, planned package names, React compatibility, and repository development requirements.

<Warning>
  `@rixx-ui/react` and `@rixx-ui/react-devtools` are not published to npm. Their
  manifests are staged for a future `0.1.0-alpha.0` release, but they are not
  currently installable from a public registry.
</Warning>

## Package requirements

The planned consumer contract supports React and React DOM `^18.2.0 || ^19.0.0`
and currently declares Node.js `>=20.19.0`. Repository development requires
Node.js 24 and pnpm 11.15.1.

Once a release is published, the intended package names are:

```bash theme={null}
pnpm add @rixx-ui/react react react-dom
pnpm add -D @rixx-ui/react-devtools
```

Until publication, follow [local evaluation](/getting-started/quickstart). Do
not copy package directories into an application or substitute internal package
names for the planned public names.

## Styles

Import the renderer stylesheet once in the application entry point or root
layout:

```tsx theme={null}
import "@rixx-ui/react/styles.css";
```

Devtools use a separate optional stylesheet:

```tsx theme={null}
import "@rixx-ui/react-devtools/styles.css";
```

## Entry points

| Entry point                          | Use                                                         |
| ------------------------------------ | ----------------------------------------------------------- |
| `@rixx-ui/react`                     | Structured renderer, configuration, low-level renderer APIs |
| `@rixx-ui/react/markdown`            | Minimal Markdown renderer client entry                      |
| `@rixx-ui/react/server`              | Server-safe catalog, instruction, and conversion helpers    |
| `@rixx-ui/react/styles.css`          | Renderer visual system                                      |
| `@rixx-ui/react-devtools`            | React state and event inspector                             |
| `@rixx-ui/react-devtools/styles.css` | Devtools styles                                             |

See [Vite](/integrations/vite) and [Next.js](/integrations/nextjs) for framework
placement.
