Convert your webcam feed or any image into ASCII art in real-time, entirely in the browser.
Live Webcam Feed - Converts your live webcam feed into ASCII art feed. Default mode removes background, and renders the foreground using ASCII character.
Image Conversion - Upload any image and get the ASCII converted image.
Switch between three rendering modes — monochrome (with a custom color picker), full color (per-character colored output), and emoji (nearest-color emoji grid). Export any output as a high-resolution PNG.
Everything runs client-side. No server, no account, no setup beyond opening the page.
- Language: TypeScript 5
- Framework: React 18 + Vite 7 (SWC)
- State: Zustand v5
- Routing: TanStack Router v1
- Styling: Tailwind CSS v4
- Hosting: Vercel
# Install dependencies
pnpm install
# Start development server
pnpm run devRequirements: Node.js 18+, pnpm. No environment variables needed.
Key scripts:
pnpm run dev— start dev server with hot reloadpnpm run build— type-check + production build todist/pnpm run preview— preview production build locally
See docs/infra/file-tree.md for the full file tree.
Core modules:
src/store/index.ts— all application state and business logicsrc/main.tsx— all React components and router (UI-only, no logic)src/constants/character-sets.ts— character sets and emoji palettesrc/EmojiGrid.tsx— rendering component for emoji mode
CLAUDE.md— master context file: architecture, conventions, PRDdocs/features/— feature-specific documentationdocs/infra/— deployment, decisions, patterns