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

# Installation

> Install Capx Compose to scaffold your Next.js project

## Prerequisites

Before using Capx Compose, ensure you have:

* **Node.js** 18.0.0 or later
* **npm** 7.0.0 or later (or yarn/pnpm)
* **Git** for version control

### Quick Start (Recommended)

Use npx to run Capx Compose without installation:

```bash theme={null}
npx capx-compose@latest my-app
```

This will:

1. Download the latest version of Capx Compose
2. Start the interactive project setup
3. Generate your project structure
4. Install dependencies (unless skipped)

### Global Installation (Optional)

If you prefer to install globally:

```bash theme={null}
# Install globally
npm install -g capx-compose

# Create a project
capx-compose my-app
```

### Using Different Package Managers

```bash theme={null}
# With Yarn
yarn create capx-compose my-app

# With pnpm
pnpm create capx-compose my-app
```
