WTF is Jamstack?

TS;DR Read this instead: jamstack.org/what-is-jamstack/

Jamstack is a word for websites that are made primarily with javascript, apis, and markup, that serve static files.

Of the many advantages of this way of doing things is the developer experience which is moved away from server and database management and closer to the frontend. Other benefits include:

  • Security - fewer systems are typically used, often there is no database at all.
  • Scale - deals better with heavy loads.
  • Performance - very high performance is possible without introducing expensive or complex infrastructure.

Image

Rocket launch

Header

Solebat cetera infelix duorum gravidi possit, et nec, est inpia mentique, consistere quae. Amplexus uror, pars pars aevo curas Cinyreius pennis sacrum inpulsaque o cunctos Oleniden peragit, se Athamas inmaduit transierant. Relicta significat rubenti potest.

Illa tibi cruentum adpulit pallent. Una dolorem quaque. Pars parvi, mihi quae Lyciaeque legit. Hic vitae felix illi laudatis? Et caelum, precatur nec pectora, Phoebi volucris moveo.

Unordered Lists

  • Item 1
  • Item 2
  • Item 3

Ordered Lists

  1. Item 1
  2. Item 2
  3. Item 3

Code Block

// finds a given word in a string and replace with another one
const findAndReplace = (string, wordToFind, wordToReplace) => {
  return string.split(wordToFind).join(wordToReplace);
};

let result = findAndReplace("I like banana", "banana", "apple"); // I like apple

Quoted Text

Maecenas faucibus mollis interdum. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vitae elit libero, a pharetra augue.