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

# Example Web App

> A minimal Next.js app demonstrating server + connect integration

## Overview

This example app shows how to fetch integrations from your Databite server and use `@databite/connect` to create connections from the frontend.

## Repository

The example web app is available in our open-source repository:

<Card title="View on GitHub" icon="github" href="https://github.com/DatabiteDev/databite/tree/main/packages/example-webapp">
  Explore the complete implementation with source code, tests, and deployment
  configuration
</Card>

## Getting Started

### Prerequisites

* Node.js >= 16.0.0
* npm, yarn, pnpm, or bun

### Installation

```bash theme={null}
# Clone the repository
git clone https://github.com/DatabiteDev/databite.git
cd databite/packages/example-webapp

# Install dependencies
npm install

# Or with other package managers
yarn install
pnpm install
bun install
```

### Development

Start the development server:

```bash theme={null}
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
