Skip to main content

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.

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
Use npx to run Capx Compose without installation:
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:
# Install globally
npm install -g capx-compose

# Create a project
capx-compose my-app

Using Different Package Managers

# With Yarn
yarn create capx-compose my-app

# With pnpm
pnpm create capx-compose my-app