Skip to content

Frontend Glossary of Terms & Documentation

Sean Albert edited this page Aug 5, 2021 · 1 revision

Jamstack

"Pre-rendered content is served to a CDN and made dynamic through APIs and serverless functions. Technologies in the stack include JavaScript frameworks, Static Site Generators, Headless CMSs, and CDNs."

Static Site Generator (SSG)

"Think of a static site generator as a script which takes in data, content and templates, processes them, and outputs a folder full of all the resultant pages and assets."

NextJS is a static site generator.

Server Side Rendering (SSR)

Where static sites are built at deploy time, server-rendered sites are built at runtime.

Netflify, with the NextJS plugin, allows us to use both SSG and SSR.

Incremental Static Regeneration (ISR)