Architecture guidelines for zero-server-lag single-page apps built with Vite and React, backed by a Hono API on Cloudflare Workers.
Standardized production guidelines for Vite, React (as a pure SPA), and Hono running on Cloudflare Workers — a minimal-latency pattern for behind-login developer tools and internal dashboards where SEO and SSR add no value.
Hoppscotch, an open-source API testing client, follows this class of architecture: a fast client-rendered app paired with a lightweight edge-deployable API layer, prioritizing instant load and zero server-side rendering overhead.
Yes — AGENTS.md is the open, cross-tool standard read by Cursor, Claude Code, Windsurf, and 30+ other agents. A dedicated .mdc file is also included for Cursor's native .cursor/rules format.
For tools that live entirely behind a login screen (internal dashboards, developer utilities), SSR and SEO add deployment complexity without a corresponding benefit -- there's no public page to rank in search, and every user is already authenticated before seeing content. A Vite SPA statically hosted on Cloudflare Pages, backed by a Hono API, minimizes both build complexity and time-to-interactive for this specific use case.
Normally, keeping a frontend's request/response types in sync with a backend API requires either hand-maintaining duplicate types or running an OpenAPI codegen step. Hono's `hc<AppType>()` imports the server's route types directly, so the frontend client is fully typed and a backend shape change becomes a compile error on the client immediately -- no codegen, no schema file, no drift.
Architecture rules for Astro server-side rendering, React client islands, Tailwind CSS, and Cloudflare Pages/Workers edge deployment.
Ultra-fast edge API architecture using Bun.serve(), Hono v4, Drizzle ORM with embedded SQLite / Turso libSQL, and Zod OpenAPI validation.
Production guidelines for Django 5 enterprise applications, PostgreSQL connection pooling, Redis caching, and Celery async workers.
Production guidelines for FastAPI, Pydantic v2 validation, Async SQLAlchemy 2.0 (asyncpg), Alembic migrations, and PostgreSQL/Redis.