Questions tagged [jamstack]

Modern web development architecture based on client-side JavaScript, reusable APIs, and prebuilt Markup. The JAMstack is not about specific technologies. It’s a new way of building websites and apps that delivers better performance, higher security, lower cost of scaling, and a better developer experience.

What questions should have this tag?

JAM (, and ) is just a simple terminology around the new way of making web projects, where you don’t have to host your own backend that builds the site every time you serve it.

Basic definitions

Your project is built with the JAMstack if it meets three key criteria:

  1. Javascript

    • Any dynamic programming during the request/response cycle is handled by JavaScript, running entirely on the client. This could be any frontend framework, library, or even vanilla JavaScript.
  2. APIs

    • All server-side processes or database actions are abstracted into reusable APIs, accessed over HTTPS with JavaScript. These can be custom-built or leverage third-party services.
  3. Markup

    • Templated markup should be prebuilt at deploy time, usually using a site generator for content sites, or a build tool for web apps.

Additional links

108 questions
0
votes
0 answers

using short codes in JAM Stacks

We are deciding which JAM stack static site generation solution we should go for, and one of the main deciding factors is ability to use short codes for creating rich content. We need to be able to use custom and / or predefined short codes such as…
all jazz
  • 2,007
  • 2
  • 21
  • 37
-1
votes
2 answers

Any advice on choosing a Netlify CMS template?

enter image description hereI was originally working toward setting up a Wordpress blog for a friend... The requirements are that: -they would not need to do any 'code related' or tricky admin tasks pertaining to maintaining the site. -they would…
-1
votes
1 answer

Gatsby/GraphQL behaving differently in code from GraphiQL

So I created a starter Gatsby site by following this: I have some simple content on GraphCMS: I am trying to query GraphCMS to return all the page posts. When experimenting with GraphiQL locally I use this query: query PageQuery { …
1 2 3 4 5 6 7
8