Hakeem Almidan

Choosing a Static Website Generator: Hugo vs. Jekyll

What are static websites?

In simple terms, static websites are a collection of webpages that have fixed content. They are the most basic type of website and are typically considered the easiest to create.

These websites are considered the easiest to create because they have a low barrier of entry. They usually are not connected to a backend or a database, so the only thing that you need to manage is the frontend.

Given that information, static websites look essentially the same for all users (because you wouldn’t have user data to customize their experience). User data, like emails and password digests, need a database for storage and are considered unsafe to store in the frontend.

Why pick a static website over a ‘regular’, dynamic website?

Although static websites are cool and all, why should one choose them over dynamic (a.k.a. full-stack) websites? Here are the advantages that a static website holds over a dynamic one (generally speaking):

  • Faster: Since static websites don’t have a backend or a database, all the web hosting server has to do is serve the needed file. There will be no API calls to retrieve data from the database, so you’re less likely to see any loading signs.

  • Cheaper: Hosting static websites is mostly free. They can be hosted on free web hosting services such as GitHub Pages, Netlify, and others. The only cost that you’re likely to face is for a custom domain name, and that’s optional.

  • Safer: Since there’s no backend or database, your site is less likely to be breached for private data. There’s no opportunity to perform SQL injection and similar database attacks. I think it’s good practice to assume that anything stored in your static website will be available to the public.

When should I choose a static website over a dynamic one?

You should pick to choose a static website if your website doesn’t allow users to make POST, PUT, PATCH, CONNECT or DELETE HTTP requests. In other words, you should probably choose to use a static website if your users are not going to modify any of your website’s data.

What are static website generators?

Static website generators are exactly what they sound like. They’re automated processes that help you produce static websites. These technologies differentiate themselves in different ways. But the main two differentiating themes are typically speed and customization.

Picking a static website generator

Here’s a list of the most popular static site generators. Currently, the top three are Next.js, Hugo, and Nuxt.js. Gatsby.js is a pretty popular one too.

Today, we’re going to be talking about Jekyll and Hugo, how they differ, and why you may choose one over the other. But before we go on, you may be wondering: why are we not looking at something like Next or Nuxt since they’re so popular? Well, although these technologies are great, I’ve decided to avoid writing about them due to a few reasons, including the following:

  • They’re built on top of frameworks: Next is built on React.js, and Nuxt is built on Vue.js. So learning them would also mean that you’re going to eventually learn the framework behind them. Hugo and Jekyll, on the other hand, are built on Go and Ruby (programming languages) respectively. So their barrier to entry is a bit lower.

  • They’re often used as a part of full-stack applications: Next and Nuxt are typically used to optimize the frontend of full-stack applications (and are kind of built for that purpose). So browsing questions about them and reading their documentation may confuse you if you plan to use them to build pure static websites [that aren’t connected to a backend or database in any way]. Hugo and Jekyll, in contrast, are mostly designed to create and maintain stand-alone static websites. So getting help for them may be easier.

Hugo vs. Jekyll: Style (themes)

You can pick a theme to build your website (rather than building it from scratch). Most themes are free and open-sourced. There are plenty of themes to choose from in both technologies.

Popular themes are sometimes available under both technologies. So if you see a theme that you like with one technology, I would suggest searching for it in the other. Here are links to theme pages for each:

Hugo vs. Jekyll: Speed

One of the main differences between Hugo and Jekyll is their speed. Looking at this benchmarking test, it is said that Hugo is “… between 23 and 63 times faster than Jekyll” (Macrae, 2018) in terms of build time. This becomes more apparent as the number of pages grows. Here’s a graph demonstrating the difference:

Column graph of build times by Hugo and Jekyll as page number increases

Build time difference on page number increase (Source)

Hugo vs. Jekyll: The learning curve

  • Hugo’s docs are harder to follow: As pointed out by Ben Congdon in his blog, Hugo follows a top-down engineering approach, where it tries to provide everything a user may need. While Jekyll, on the other hand, follows a bottom-up approach where it provides minimal tools and lets you build the rest. This makes Hugo a little harder to learn. I personally found its documentation to be a little overwhelming. Jekyll’s documentation was much easier to read, navigate, and follow.

  • Great communities with both: Although Jekyll (est. 2008) has been around longer than Hugo (est. 2013), I found both to have great communities. I didn’t have trouble finding answers for either of them.

  • Programming language familiarity: Depending on the programming languages you currently know, you may choose one technology over the other. As discussed, Jekyll is built on Ruby and Hugo is built on Go. If you’re a beginner programmer, choosing Jekyll may be the easier route since Ruby is considered easier to learn than Go. If you’re familiar with statically typed programming languages, then Hugo may be the better option for you, as Go is statically typed.

It may be important to note that according to this report by Hired.com, programmers experienced with Go had the most interview requests on their platform (in 2019). Here’s a graph demonstrating this further:

Graph of most in demand programming languages provided by Hired

Most in demand programming languages of 2019 (Source)

So if you are currently looking for a job (like I am), it may be worth it to look into Go, and how it may help you grow as a programmer. In case you do want to check it out, I think going through this interactive tutorial provided by the language’s official website may be a good way to start.

Hugo vs. Jekyll: When to use what

If you want to look at an even deeper comparison of the two technologies, I recommend this article by Forestry.io.


Like what you're seeing? Subscribe below to recieve notifications of new posts ⬇️

Promise not to send more than 1 email per month (not counting subscription confirmation email) 👨‍💻


comments powered by Disqus