Book Image

Jumpstart Jamstack Development

By : Christopher Pecoraro, Vincenzo Gambino
Book Image

Jumpstart Jamstack Development

By: Christopher Pecoraro, Vincenzo Gambino

Overview of this book

Jamstack (JavaScript, API, and Markup) enables web developers to create and publish modern and maintainable websites and web apps focused on speed, security, and accessibility by using tools such as Gatsby, Sanity, and Netlify. Developers working with Jamstack will be able to put their knowledge to good use with this practical guide to static site generation and content management. This Jamstack book takes a hands-on approach to implementation and related methodologies that will have you up and running with modern web development in no time. Complete with step-by-step explanations of essential concepts, practical examples, and self-assessment questions, you'll begin by building an event and venue schema structure, and then expand the functionality, exploring all that the Jamstack has to offer. You’ll learn how an example Jamstack is built, build structured content using Sanity to create a schema, use GraphQL to expose the content, and employ Gatsby to build an event website using page and template components and Tailwind CSS Framework. Lastly, you’ll deploy the website to both, a Netlify server and the Microsoft Static Web Apps Service, and interact with it using Amazon Alexa. By the end of this book, you'll have gained the knowledge and skills you need to install, configure, build, extend, and deploy a simple events website using Jamstack.
Table of Contents (17 chapters)

An introduction to GraphQL

First, let's start by learning about GraphQL. From the GraphQL website, we learn that GraphQL allows its user to describe the data. This means defining how a data structure should be formed. Consider the following example:

type Event {
  name: String
  date: Date
}

Here, we define the structure of an event. Using GraphQL, we could query the data structure as follows:

{
  event(name: "Saturday Night Party") {
    date  
  }
}

Notice that the basic structure looks almost the same. We are asking for the data to be in the same format as it is defined. The returned data would be in the following format:

{
  "event" {
    date: "2020-10-01"
  }
}

Note:

For more information on GraphQL's syntax and specification, please visit http://spec.graphql.org/draft/.

GraphQL's strength is that it...