A
API (Application Programming Interface)
A way for different software applications to communicate. Kleap sites are static-first; server-side logic and data are handled by the built-in Kleap Database when you need them.API Route
A server-side endpoint that handles HTTP requests (a common pattern in traditional web frameworks). Kleap sites are static — use the built-in Kleap Database for dynamic behavior instead.app_files
Kleap’s managed store and source of truth for every file in your site. Kleap versions your files for you — there’s no repo, sandbox, or local checkout to manage.Astro
The web framework Kleap builds with. Astro 5 produces fast, static-first sites (Tailwind CSS v4, TypeScript) and hydrates interactive React “islands” only where needed.Authentication
The process of verifying a user’s identity, typically through login with email/password or OAuth.Authorization
Determining what an authenticated user is allowed to do. Different from authentication.B
Build
The process of compiling your app into optimized files for production deployment.Bundle
The compiled JavaScript files that are sent to the browser.C
CDN (Content Delivery Network)
A network of servers distributed globally that serves your content from the nearest location to users.Client Component
A React component that runs in the browser. In Astro, add aclient:* directive (e.g. client:load, client:visible) to hydrate it as an island.

