A collection of demo applications built with Kilo Code to showcase different web development techniques and frameworks.
This monorepo contains the following demo applications:
Location: ./kiloflix
A Netflix-style streaming platform clone built with vanilla HTML, CSS, and JavaScript. Features a responsive design with a modern streaming interface.
Tech Stack:
- HTML5
- CSS3 (with CSS Grid and Flexbox)
- Vanilla JavaScript
Location: ./snake-1
A classic Snake game implementation built with TypeScript and Vite, featuring modern development tooling and build processes.
Tech Stack:
- TypeScript
- Vite
- HTML5 Canvas
- Node.js 18+
- pnpm 8+
- Clone the repository:
git clone <repository-url>
cd vibe-demos
- Install dependencies:
pnpm install
Run all projects in development mode:
pnpm dev
Or run individual projects:
KiloFlix:
cd kiloflix
pnpm dev
# Opens on http://localhost:8000
Snake Game:
cd snake-1
pnpm dev
# Opens on http://localhost:5173
Build all projects:
pnpm build
Snake Game to Cloudflare Pages:
cd snake-1
pnpm build
pnpm deploy
vibe-demos/
├── kiloflix/ # Netflix-style streaming platform
│ ├── index.html
│ ├── styles.css
│ ├── script.js
│ └── package.json
├── snake-1/ # TypeScript Snake game
│ ├── src/
│ ├── index.html
│ ├── vite.config.ts
│ ├── tsconfig.json
│ └── package.json
├── package.json # Root package.json with workspace config
├── pnpm-workspace.yaml # pnpm workspace configuration
├── turbo.json # Turborepo pipeline configuration
└── README.md
These demos were created using Kilo Code, an AI-powered coding assistant that helps developers build applications quickly and efficiently.
This project is open source and available under the MIT License.