Skip to content

Instantly share code, notes, and snippets.

@zcaceres
Created July 2, 2017 15:21
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zcaceres/b940f8bf500ef03ca93cd692d1bb7894 to your computer and use it in GitHub Desktop.
Save zcaceres/b940f8bf500ef03ca93cd692d1bb7894 to your computer and use it in GitHub Desktop.
How Does a Static Website Generator Work?

How Does a Static Website Generator Work?

A dynamic website takes a bunch of data on the backend – content, databases, layout etc. and sends the user a finished product when they request it.

A static website generator has a set of HTML files delivered immediately to the user when they arrive to the site. These files are the finished product, holding all the latest data, layout etc. These files are delivered together when the user reaches the site. Content is often written in Markdown or another format that can be transformed into the final HTML for display in the browser.

Static websites can't really offer a real-time experience or much in the way of user involvement.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment