Search the Lexicon
12 of 18 terms found
Astro
Astro is a modern JavaScript framework focused on building fast, content-driven websites. It uses a component-based approach with .astro files and follows the 'islands' or 'partial hydration' pattern: by default little to no JavaScript is shipped to the browser unless you explicitly hydrate interactive components. Astro is framework-agnostic—allowing you to use React, Vue, Svelte and other components inside an Astro project—and it supports both static site generation (SSG) and server-side rendering (SSR).
CORS
CORS (Cross-Origin Resource Sharing) is a security mechanism that controls which web applications can make requests to domains different from their own. Browsers enforce the same-origin policy by default, blocking cross-origin requests to protect users. CORS headers from the server specify which origins, HTTP methods, and headers are permitted, enabling controlled cross-origin communication.
HTTP
HTTP stands for HyperText Transfer Protocol and is the protocol used for communication between a web browser and a web server. It defines how requests and responses are structured and exchanged. Without HTTP, the modern web would not exist.