« Scott Nonnenberg


Static site generation with Gatsby.js

2016 Apr 19 (updated 2021 Oct 17)

[This is an update to a talk I gave at the Seattle React.js meetup in March 2016. Direct link to screencast. Looking for detailed tips on using Gatsby? I’ve got a post for that! Also, you can get into the deep details now that this blog is open source!]

I’ve been on the web for a long time. I was hand-editing HTML with Notepad all the way back in 1997, uploading to jps.net or Geocities via FTP with my parents’ 14.4 kbit/s modem. So I have a lot of experience running websites from static files.

Gatsby is the first site generation tool I’ve used which feels right to me. It balances its production static file experience with a dynamic, full-fidelity authoring experience.

What is Gatsby?

It’s a node module which weaves together React.js, reach-router, and webpack. You get a nice development experience with hot-reload for page contents, styles and page structure, and you’re working with the same markup as what is generated to disk for production builds. It’s as simple as running gatsby develop or gatsby build on the command-line.

It’s particularly interesting for me because these are all the same tools I use to build web applications. Gatsby configures everything for you, resulting in the same benefits with a lot less work setting up a new project.

Big thanks to Kyle Mathews for starting and continuing to maintain the project. He initially released it back in March 2015, and the most recent version is 3.14.0, released September 2021. I submitted five pull requests in the early days, and I reserve the right to jump back in! :0)

Why static files?

Gatsby’s production build gives you a collection of static files. It’s quite a bit different from tumblr, ghost or wordpress, all generated on-demand from a database.

With static files you can easily serve them with minimal configuration, using your favorite CDN, github pages, or your own server with nginx. You don’t need to worry about updating your published site due to a newly-discovered vulnerability in one of your dependencies. Or maintaining a database. A static site won’t hog memory or CPU. It will continue doing its job through years of operating system and server updates.

Now, you may be thinking “that approach is fine for blogs and other toy sites, but not my site!” It’s true. Blogs, documentation sites, and company or product marketing sites are all ideal cases for static sites. They are modified/deployed only by privileged users, and changed relatively infrequently. But let’s get creative! What about a shopping site?

Let’s really think about it. How often does the list of products change? Stock changes quickly, yes, but the overall set of products? What if you generated your entire site every night, and anything dynamic was via targeted javascript talking to a separate API? You could cache those static files aggressively. Just make sure your users haven’t disabled javascript!

Why single-page web app?

A surprising aspect of Gatsby is that it isn’t just an authoring and basic static file build tool. It also assembles a full javascript Single-Page App (SPA) for your site. Once it’s loaded in a user’s browser, further navigations are extremely fast due to Gatsby’s pre-fetching of the users’s likely next page.

If you’re not familiar with SPAs, they use browser history APIs to make it seem like you are navigating between different pages on a site. But you aren’t. Not really. The loaded app has or can request what it needs to generate each user-requested page on the fly. With Gatsby, the user’s likely next steps are loaded up front - as you navigate through the site, often the only subsequent request is for page assets like images, and page-data.json files are fetched as the user gets deeper into your site.

Why would you want this? Performance is the first reason. Load time is nearly instantaneous if Gatsby has page-data.json files for it. It can also help if you’re on a wireless connection where high latency makes each round trip with the server take a while - Gatsby will fetch information to render your intended page before you click the link.

But SPAs are not always a good idea. Let’s do some quick math for my blog, excluding images:

That’s 97kb extra for that first page load in the SPA. The good news is that the statically-generated HTML will be ready long before the javascript is, so we don’t sacrifice much in the way of user experience. But it is 8x the size of its plain HTML/CSS alternative. That multiplier can be worse - Gatsby’s pre-fetch didn’t kick in here. Pre-fetching will sometimes add several pages of page-data.json data to an initial page download.

Of course, any pre-fetched page won’t require any new data to render, but again may involve some downloads due to another set of of pre-fetch pages.

You’ll have to figure out if the benefits of a javascript-enabled site are worth it for you. If you have any interactivity at all, maybe it is!

Getting started

Starting off with Gatsby is a snap, since it has quite a nice onboarding experience

yarn global add gatsby-cli
gatsby new

It will guide you through the process of initial project setup, and you’ll very soon have a skeleton site running at localhost:8000. Update files and watch the hot reload magic happen before your eyes!

Happy Gatsby-ing!

I really like React because of its flexibility - I can pre-render to static files, I can render on-demand on the server, or I can render on-demand on the client. And Gatsby makes it very easy to unlock that potential.

Thinking about jumping in? Take a look at my Practical Gatsby.js post, to find out how to turn off javascript and make other important tweaks to your Gatsby site!

I won't share your email with anyone. See previous emails.

NEXT:

Practical Gatsby.js 2016 Apr 21

So you want to use React.js to build your site, and you want to deploy just static files? Gatsby.js is a great choice! But it’s dangerous to go alone - take these hard-won tips! Read more »

PREVIOUS:

Feeling the Bern 2016 Apr 14

This election really has me excited. Bernie Sanders is bringing a new energy into politics, and I’ve never been this engaged before. You could definitely say that I’m “Feeling the Bern.” Read more »


It's me!
Hi, I'm Scott. I've written both server and client code in many languages for many employers and clients. I've also got a bit of an unusual perspective, since I've spent time in roles outside the pure 'software developer.' You can find me on Mastodon.