Home

Build Jamstack Sites Faster with Conventional Tooling

The Jamstack presents the opportunity to fly through the process of building a website, but it helps if you build a foundation on which you can do work consistently.

While these days I mostly work with the Jamstack when building products for the web, I came from building everything with Ruby on Rails.

By the time I began working with Rails, the community had formed and followed a seasoned doctrine, a manifesto of sorts. One of the many pillars of this doctrine was (and is still today) convention over configuration.

The idea behind convention over configuration is that by reducing the number of decisions a developer has to make, they can move faster. They can focus on the business logic, not whether or not to use camelCase for helper method names. Those decisions should be made once and be used consistently across all projects.

If you (the developer, consumer of the framework), don't have to make those decisions the first time, that's a bonus! You can first spend time learning the convention, and then focus your time on solving the problems that get you closer to delivery.

Convention in the Jamstack

In the world of the Jamstack, there is little convention. In fact, that's the point. The Jamstack isn't a stack at all. It's not a prescription. It's a methodology. It's an approach to take and principles to follow when building a website, not a set of tools to use. As a result, it delegates low-level decision-making to the developers in its community.

And with the Jamstack being new and shiny, there's a ton of development happening around it. There's something new to distract your attention on an almost weekly basis.

Conventions in Ruby on Rails

Rails is different. It's a framework that sets forth a way to work, which often includes the tools and conventions to use when doing that work. It pulls away the trivial decisions to keep developers focused on the end goal.

When the Rails community makes a decision that will become a first-class feature in its framework, they do so with the community and their doctrine in mind, considering the array of project types the framework would have to serve as a consequence of that decision.

In other words, developers can ultimately move more efficiently if they can follow a convention that eliminates unimportant decisions while remaining flexible enough to solve the problem(s) at hand.

Forming Convention in the Jamstack

As developers of Jamstack projects, we're faced with building most of those conventions ourselves. And they begin before the first line of code.

What tools will you use to build and power your site? Will it be Gatsby as the static site generator, Contentful as the content management system, and Netlify as the build tooling and host? Or maybe you prefer something more like Eleventy (SSG/), Forestry (CMS/), and Vercel (build/host/)? Those are just two examples that don't have any overlap in tooling. And they're two of hundreds of combinations you could create.

Perhaps the best and worst part of the Jamstack is that none of those decisions are inherently wrong.

Standardizing the Toolbox

So, how do you build those conventions with the Jamstack? It begins with standardizing on a set of tools, limiting what you're going to work with, at least for a some period of time while you get comfortable.

This marks the beginning of settling down.

There are numerous decisions to make along the way. Choosing the stack is only the start. Even if you went with Gatsby, Contentful, and Netlify — some seriously well-baked tools — there are still an abundance of low-level decisions to be made. Consider the following:

  • Naming components and their directories. React has no standard on this, while Gatsby has a few conventions, but nothing overarching.
  • Modeling content types, like pages and posts. What names will you use? Which fields will they have? How will those fields map to what users see on the screen?
  • How will you handle a staging site? Is it a separate Netlify project? Will you consider branch deploys?

That's just one question for each of the tools we created. There are plenty more where that came from! In the end it boils down to a lot of decisions to make.

A lot.

If you're changing the tools you use on any given project — the freedom that comes with the Jamstack — then you have to answer those questions on every project. That's a lot of time spent on low-level decision-making that could have been spent on something unique to that project.

Jamstack Project Without Convention

Adding Supporting Tools to the Toolbox

It would be ideal if you could answer those foundational questions once then work under those answers until it makes sense to question them again.

Jamstack Project With Convention

Enter: Internal tooling.

An effectively means of driving consistency looks like this:

  1. Make a decision on a way to work.
  2. Build tooling to support that decision.
  3. Adjust (slowly) until it feels optimized.

For instance, if you're going to structure the content of your headless CMS similarly on most projects, then maybe you have a script that sets up those models automatically. And when you find that projects are deviating from the norm in some consistent manner, or when the core models don't work, you adjust the script and try again. Then repeat and repeat and repeat.

It's on You!

With the Jamstack it's on you to create almost all of the conventions you will follow. Do it! Do it well. Change as little as you can for the next project. Over time, your projects will begin to look and behave similarly and you'll have a solid convention under your belt.

As a bonus, your projects will then have the benefit of being easier for new developers to join, as they'd only have to learn your approach once and then they're all set to work on any project that follows similar conventions.

What Jamstack conventions have you formed? Let's discuss.

Let's Connect

Keep Reading

WTF is Jamstack?

This term "Jamstack" is becoming a buzzword among development communities. But what does it mean and why should you care about it?

Nov 13, 2018

Why Build Static Sites?

With all the tools at our disposal today, why would we waste our time building static sites? I'll give you four reasons.

Dec 04, 2018

WTF is Netlify?

What the what is Netlify and why am I always talking about it?

May 04, 2021