Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
February 13, 2022 03:11 am GMT

SSGs through the ages: The Reinvention era

By Mike Neumegen

After years of recreating and iterating on Jekyll, the reinvention period sees a flurry of static site generators challenging some of Jekylls underlying foundations.

We see SSGs doing new things with taxonomies, specialized SSGs that do less, plugin-based SSGs that can do anything. Its a wild period of play and experimentation that pushes the limits of SSGs.

Hugo timeline

Hugo

by Steve Francia

Prior to this point, the majority of SSGs have been about converting Jekylls functionality into another language. Hugo is a standout in the history of SSGs because it directly addresses some of Jekylls weaknesses. Most notably:

  • Build speed Jekyll is notoriously slow and building sites. Hugo is written in Go, which is a compiled language and, according to its current leader maintainer, a perfect match for many of the tasks that Hugo performs. The result is Hugos ability to build tens of thousands of pages in seconds.
  • Dependencies Setting up Ruby, dealing with Gemfiles and installing Jekyll can be surprisingly challenging. Hugo is a binary file; just download it and run it.

The story of how Hugo came to be starts with Steve Francia. At the time, his blog used WordPress. Over time, he became frustrated at how WordPress was optimized for writing content rather than for the reader. The website was slow, and the WYSIWYG editor was introducing poorly rendered HTML. Steve was interested in static site generators and took his frustrations with WordPress as an opportunity to focus on both the content and structure of his site.

He evaluated other SSGs and found the build times too slow and content inflexible, typically restricted to blogging workflows.

Since I was already looking for a good project to write in golang I decided to build my own static site generator called hugo.

Hugo took some ideas from other static site generators like front matter and Markdown-based content and introduced some of its own. These include taxonomies, built-in image processing, i18n, custom outputs, RSS feeds, menus, and more. Everything is included. No plugins are required.

Hugo has seen success with corporate customers, including 1Password, Linode Digital.gov, KeyCDN, and Lets Encrypt, to name just a few. Bjrn Erik Pedersen took over as the lead maintainer in 2015 and continues to lead Hugos thriving community.

See our introduction to getting started with Hugo on CloudCannon.

Sculpin timeline

Sculpin

by Beau Simensen

Beau Simensen was using Jekyll to create static sites and hit issues he created pull requests to fix. After months of inactivity on his pull requests, he grew frustrated and set out to build a new SSG. Beau had experience in PHP and thought, Maybe I could rewrite Jekyll in PHP. Symfonys HTTP Kernel SSG could serve as the heart of the SSG, Composer was making waves as a PHP dependency manager, and Twig was a popular PHP templating language. He had all the building blocks he needed. And so, Sculpin was born.

Sculpin has a similar feature set to Jekyll in that you can blog, there are custom content types (Jekylls collections), layouts, and the ability to extend Sculpin for your own needs.

Hexo timeline

Hexo

by Tommy Chen

Tommy Chen was using Octopress on his personal blog and was running into performance issues.

[translated from Traditional Chinese] I think every Octopress user must have such troubles as the number of articles increases, the speed of file creation becomes slower and slower. This site has grown to 54 articles, and it takes at least one minute to create a file every time.

He had been messing around with Node.js, and decided to create a Jekyll-inspired prototype using the framework. His prototype took the build time on his blog from one minute on Jekyll down to two seconds. Impressed with the results and who wouldnt be? he spent a month building out the rest of the SSG and released the first version of Hexo.

Hexo wasnt the first JavaScript-based SSG, but it was the first to gain a significant following. It has a similar feature set to Jekyll, a vast number of themes and plugins, and has the ability for deep customization for those familiar with Node.js.

Harp timeline

Harp

by Brock Whitten

Coming off the success of creating PhoneGap, a way of building mobile apps with HTML, CSS, and JS, Brock Whitten set to work on a new kind of SSG, Harp.

The idea behind Harp is all the preprocessors are built in, so you can write your Sass CSS in a .sass file and Harp will automatically build it into a .css. It also supports Markdown, Jade, EJS, LESS, Stylus, and CoffeeScript.

Harp isnt just a static site generator, either. You can use it to compile or build a site just as you would with a static site generator. You can also use it as a middleware for handling assets in a larger application, or as a production web server replacing something like Nginx or Apache.

Where Harp really shines is in its simplicity. Sure, it doesnt have some of the standard SSG features like front matter and blogging. But, if you dont need those, this is a neat little SSG. You can create Markdown files, wrap them in your HTML layout, and have your Sass automatically build.

Metalsmith timeline

Metalsmith

by Ian Storm Taylor

In 2011, Ian Storm Taylor cofounded Segment, a customer data platform that helps collect, clean, and control customer data. Years later, he created the SSG Metalsmith, which he used to power the Segment technical documentation. Just this week, after a 5-year maintenance mode break, Kevin Van Lierde took over as lead developer and maintainer, and shared his roadmap for future features and patches.

In some ways, Metalsmith is one of the simplest SSGs. The entire codebase is under 400 lines(!), but dont let that fool you this is one of the most powerful and flexible SSGs out there. Everything in Metalsmith is a plugin. From layouts, to collections, pagination, drafts, permalinks, image processing you name it, theres a plugin for that. You configure these plugins to process files on your site and have complete control over where and how theyre run. If a plugin doesnt exist, you can always add your own using Metalsmiths simple Node.js API.

Metalsmith isnt just restricted to HTML-based websites either; on their website they have workflows for creating ebooks, building assets, and project scaffolding.

Zola timeline

Zola

by Vincent Prouillet

Vincent gets straight to the point in his announcement of Gutenberg (later renamed to Zola).

Why would we possibly want another static site engine? I already hear some say. Thats a very valid question!

He initially used Pelican to power the static websites he worked on, and later switched to Hugo for the speed and the standalone binary and [he] stayed for the instant live reload. Hugo was great, but he soon grew frustrated with the Go templating engine.

Vincent had been working on his own templating engine, Tera in Rust, and thought building a static site generator would be a great way to further his knowledge of the language. Before long, he had created Gutenberg, an opinionated yet flexible way to build all kinds of sites, from landing pages to knowledge bases, not only blogs. Gutenberg launched with support for CommonMark for content, category and tag support, automatic RSS feeds, and a host of other features that made it a viable alternative to Hugo.

In 2018, WordPress announced its block-based editor, Gutenberg, and began a heavy marketing campaign. Up against the platform that powered most of the web (an SEO matchup he described as a plankton vs a tsunami), Vincent changed the name to Zola, after the famous French writer.

Zola is now a fully-fledged SSG with support for shortcodes, pagination, taxonomies, search, Sass preprocessing, image processing, and multilingual sites.

The era of reinvention saw developers flexing their creative muscles, and really pushing the boundaries of what a static site generator is capable of. An overlapping era of static generation was already underway, however, and single-page web applications were beginning to make waves. In my [N]ext article, Ill dig more deeply into the webs boundless enthusiasm for SPAs.


Original Link: https://dev.to/cloudcannon/ssgs-through-the-ages-the-reinvention-era-leo

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To