The End of Eleventy

(brennan.day)

88 points | by ValentineC 3 hours ago

17 comments

  • PaulHoule 2 hours ago
    The thing about SSGs is that you only need a small percentage of the functionality they offer and for what: so instead of some simple syntax for links you can remember in HTML

      <a href="there">description</a>
    
    there is something weird and irregular I always have to look up in the manual in Markdown and all sorts of other Markdown WTFs. Every time I tried to get started on a personal site with an SSG I would get depressed looking at hundreds of ugly themes, get depressed with the mysterious and crappy cloud-side build systems, get depressed with the prospect of customizing them, etc. So I'd start experimenting, never finish and come back six months to make another attempt that fails.

    When I really needed a landing page that looked like it fell off a UFO I did it in Vite-React (such a joy to use semantic components, like write

       <Event date="2026-04-18">Earth Day Parade Ithaca Commons</Event>
    
    and it is a simple python script that uploads the dist files to S3 (no "WTF went wrong with the github action") invalidates Cloudfront [1], extracts metadata, maintains the metadata database. There's a clear path to extending the system to do exactly what I want to do in the future unlike some SSG which I will have to relearn from scratch in six months when I want to make a big change... and had it up and running and in front of end users in a weekend.

    That is, SSG has no commercial potential because any individual or organization which is capable of maintaining and customizing an SSG can create one from scratch that does exactly what they need with less cost and effort and success is only possible through hypnotizing people into thinking otherwise -- in many fields of software this happens every day but I think not SSG, like those people are going to stay asleep and dream of Drupal and Wordpress.

    [1] ... and if I want to move to some similar platform I just implement it instead of struggle with "plugins" and "modules" and other overcomplicated extension mechanisms

    • Tomte 1 hour ago
      https://soupault.net/ is about using plain HTML, but doing index pages, RSS feeds and so on from that. You even get away with not having frontmatter, because CSS like selectors allow those meta pages to retrieve title, date etc. from the HTML pages.
      • girvo 43 minutes ago
        Hah, of course it’s written in Ocaml!

        As a learning exercise, I wrote my own little SSG in ocaml, and man I forgot how nice a language it is. Tooling is still a bit rough but lots better than it used to be

        My little blog (in my profile) is built using it: https://github.com/girvo/jgirvin_blog_ocaml

        Horrible Ocaml I’m sure, but between YOCaml and Soupault, the best SSGs are all written in this language. Fascinating really

  • charles_f 1 hour ago
    I've been using the same version of Jekyll, using the same outdated, discontinued version of ruby, for more than 10y. I refuse to learn anything about ruby, or spend any time upgrading Jekyll or any of the 2 plug-ins I use, and I take a weird pride in that. It works, it generates my blog, I don't want it to do anything else. I have no idea how it works anymore. For all I know Jekyll has been abandoned. That version of ruby might be riddled with bugs and security holes, and why would I care? it's only used when I generate the website, in a docker container that doesn't talk to anything.

    Eleventy might not receive new features, your website will still work.

    • mooreds 1 hour ago
      > Eleventy might not receive new features, your website will still work.

      The beauty of SSGs, in one sentence, folks.

      I'm not aware of any CVEs in HTML, either.

  • xp84 2 hours ago
    SSGs versus Wordpress is surprisingly still a battle… I’m genuinely shocked at the number of sites on the Net that use Wordpress, dynamically assembling markup with PHP for every page view, risking constant hacking and stuff, when they have a total of like 7 or 100 pages, which could all be pre-rendered to HTML files in roughly 8 seconds on even a junky laptop or X-small ec2 instance. It really is okay.

    For those who post regular updates on those sites, there are great and cheap WP plugins that export the whole site as static to something like FTP or S3, so you can just firewall the actual WP behind an IP restriction and host the actual public-facing site from S3/whatever.

    • yallpendantools 11 minutes ago
      Is there a tenable workflow for the marketing department to use a SSG over Wordpress?

      - WYSIWYG editor is table stakes. The lovely folks at marketing once thought I was hacking when I `ps -eaf`-ed in an unresponsive Macbook.

      - They "put" images in their post. They don't "upload the image and position it with CSS".

      - It's the marketing department so they have to have all sorts of bells and whistles. At the very least tracking, at most some obscure integration plug-in that as an engineer I have no kind words for. Social integrations and "You may also like..." sections also come to mind.

      > cheap WP plugins that export the whole site as static to something like FTP or S3, so you can just firewall the actual WP behind an IP restriction and host the actual public-facing site from S3/whatever.

      Not that I have extensive WP experience but unless you can name me an actual plugin that has good street cred for being used in the wild wild west, I'm gonna say this is not as easy as you make it sound. For one you just described a very rudimentary data pipeline which someone has to support and maintain even infrequently. Also, speaking from experience, plugins don't always play nice with other plugins. I once tried to export my very basic personal site out of WP to find the footnotes all messed up (I don't know now but back then I handled footnotes with a plugin).

    • evanelias 1 hour ago
      Ironically, one of the original major reasons WordPress became popular was its dynamic nature. It dethroned Movable Type, which was an extremely powerful and extensible static site generator.

      It's wild to me that this post's timeline makes no mention whatsoever of Movable Type, and at one point it links to another author's post titled "A Complete History of Static: The Beginning to WordPress Headless" which also makes no mention whatsoever of Movable Type. Now I feel old :/

    • CJefferson 14 minutes ago
      To me, the thing wordpress installs offer is the GUI. I help a few people with wordpress installs, and I've ended up setting up a private wordpress install, and then I run a script which mirrors the website statically -- this is moderately hacky, and I'm sure could be done better, but as long as I hide the private wordpress install, it means I don't need to worry about keeping it up to date.

      I haven't found a static generator which has as nice a WYSIWYG interface as wordpress.

    • faangguyindia 52 minutes ago
      I recently moved all my website from WordPress. In last few year couple of them had got hacked via plugin exploits as well. I had to use "security" plugins after that i didn't have any issue but still...

      I crawled own website and downloaded each, and converted to markdown then used static site generator (custom in javascript)

      runs on cloudflare pages for free with no downtimes or "fee".

      if you want to see result: https://aretecodex.pages.dev/guides/recomposition

      Couple of problems:

      To edit content i've to use "image paste" plugin and configure its base directory, image path in project setting in .vscode

      I lost the comment/upvote feature.

      I lost "search"

    • nchmy 10 minutes ago
      have you ever heard of caching? because it can do the exact same thing as what you just described, yet WP can also be dynamic, have visual page and post builders, etc...
    • mooreds 1 hour ago
      Wordpress has:

      * the ability to schedule posts

      * a ton of plugins

      * a lot of people who know how to use it

      * a reasonable WYSIWYG interface

      As far as I know, most SSGs fall down on one or more of those dimensions.

      • joemaller1 58 minutes ago
        3rd bullet. I do a ton of WordPress at work. Clients asked for it because they know how to use it.
    • busterarm 36 minutes ago
      The WordPress hacking/plugin security issue has been a solved problem for well over 10 years now if you're even basically competent. Especially if you're using something like WP Engine or Pantheon for hosting.
      • nchmy 7 minutes ago
        what is unique about those hosts with regards to plugin security?
  • preommr 2 hours ago
    Much prefer astro.

    It's somewhat counterintuitive, but the added complexity leads to simpler projects that are easier to maintain long term. I have simple markdown files, and a separate, code-based conversion process that works well for me.

    Also the documentation for eleventy was always confusing to me. I almost got the impression that "it's so simple, we don't have to explain it". Whereas astro's documentation is much more accesible; there were a handful of cases where there was something I wanted to do and astro had an example of exactly that. I didn't have to do guesswork, just follow the examples in the way the creators intended. Stuff like that is important.

    • adzm 17 minutes ago
      Astro is great, and easily extensible just by looking at the code and existing extensions too. Highly recommend it. Having the islands of actual react stuff is incredibly useful as well.
  • trendbuilder 2 hours ago
    Eleventy's strength was always its simplicity and respect for the developer's choices, but maintaining an open source project solo is genuinely brutal. The irony is that the JAMstack wave it helped popularize eventually produced well-funded competitors that could afford full-time teams. Hope Zach lands somewhere good — his work shaped how a lot of us think about static site architecture.
  • prepend 2 hours ago
    Sadly, SSGs can’t make money. Nor should they, because they are simple and sort of the whole point is to be simple and not require complicated resources to build or host.

    I wish them the best.

    • PaulHoule 2 hours ago
      e.g. you can't afford to build your own Drupal from scratch but you can afford to build an SSG from scratch and it may even be simpler than customizing an existing SSG from scratch and dodging the WTF.
  • gnabgib 2 hours ago
    38d ago by OP (5 points) https://news.ycombinator.com/item?id=47247541

    Follow up (by OP) Cancelled (5 points, 1 month ago) https://news.ycombinator.com/item?id=47282675

    Related Introducing: Build Awesome (3 points) https://news.ycombinator.com/item?id=47245750

  • gwerbret 31 minutes ago
    In case anyone wondered, the title is a play on the Isaac Asimov book "The End of Eternity": https://en.wikipedia.org/wiki/The_End_of_Eternity
    • nchmy 13 minutes ago
      how do you figure?
  • MidnightRider39 1 hour ago
    My personal page runs on 11ty since the last 3 years and I enjoyed it a lot.

    I’ll probably replace it with pure HTML soon - I found that I don’t need a SSG anymore, I can just use a local LLM to generate HTML out of markdown files and I never use any fancy features anyway.

    • npilk 59 minutes ago
      Yes, I find LLMs are great for taking loosely-structured text and turning them into formatted blog posts. https://notes.npilk.com/chatgpt-is-my-ssg
    • bryanhogan 28 minutes ago
      Wouldn't Astro work great here though?

      Just a static sites without JavaScript but you still get some nice things like scoped CSS, components and being able to use markdown for blog posts.

    • elevation 1 hour ago
      I'm also using 11ty on a couple projects, but I abhore the npm ecosystem.

      I'm considering letting an LLM generate a flat python script to replace what 11ty does for me. Once removed from the fracas, it should be stable for decades.

      • deadbabe 53 minutes ago
        If using an LLM why bother with python? Go for straight shell scripts.
  • spankalee 2 hours ago
    I use Eleventy for nearly all of my static sites. Almost every project of mine has at least an 11ty internal docs site. I'm very happy that Eleventy has a home and Zach a job.

    But my only thought on this is: Eleventy is an awesome name.

  • OuterVale 1 hour ago
    I'm still completely in love with WebOrigami (https://weborigami.org). It is a 'dialect of JavaScript' that is designed for building static sites. It isn't super popular, but it much more flexible and comprehensive than anything else I've found. Fills the 11ty gap nicely.
  • morpheuskafka 2 hours ago
    > Who uses 11ty? NASA, CERN, the TC39 committee, W3C, Google, Microsoft, Mozilla, Apache, freeCodeCamp, to name a few.

    > Imagine if Build Awesome actually reached out to people who regularly make static sites. You know, the userbases on NeoCities or MelonLand or 32-bit Cafe?

    One minute you are saying large companies use the product, the next that it was always for hobbyists and shouldn't target corporate features?

    > In truth, I myself have started a business that has a near identical concept to Build Awesome. Berry House is my independent web studio

    > The difference is though that my model is pay-what-you-can, or pro bono. I developed Calgary Groups for a client and charged $5/hour for my dev work.

    That is not a business -- no profit motive. (Working less than minimum wage, even.) Not a good benchmark for comparing what an actual business like Font Awesome should do.

  • fsckboy 2 hours ago
    if the kickstarter campaign met its goals, but then their outgoing emails ended up in the spam folders, why does that say cancel? They cite "momentum", but doesn't the fundraising success sustain the momentum of the project and team? solve the email problem and mail the sponsors again, what's the big deal, since when do sponsors need momentum if the goal has been met?
    • ChrisArchitect 2 hours ago
      This. Totally confusing. Sounded like a very successful campaign, met goal. Why is the rest of that blog post (https://blog.fontawesome.com/pausing-kickstarter/) so negative and like it's a big disappointment? Like Font Awesome was expecting some lengthy constantly growing source of income from it? So weird. (and also, first I'm seeing anything about this or given any reason to pay attention to what Font Awesome is doing despite being a regular user of 11ty and involved with its small ecosystem for years)

      And if '11ty devs' aren't big fans of the change etc, then who was rushing to support the Kickstarter? Who's funding this (and why?)

  • ETH_start 14 minutes ago
    The irony is that a key plank of the SDNY's allegations against Roman Storm for his development of Tornado Cash is that he provided a UI (since the backend smart contract is already established as a matter of law to be immutable and outside of Roman Storm's control), and the UI that Roman Storm provided was an (open source) static HTML file that users executed client-side in their own browser.
  • busterarm 38 minutes ago
    The author seems to think that there's only one type of user of these tools. Namely people who use NeoCities. They're all that matter to him.

    Way back in 2015 I was building a large static site using Jekyll and Wordpress CMS as a backend. We had 30+ content editors using it, writing Markdown and I had Jekyll Generator that would execute a SQL query against the Wordpress database to build static content. Every new post would build and deploy the whole site in 2-3 minutes. Over 50k pages of content. This powered a very large marketing website straddling multiple top 10 Google Ad keywords. Business was bringing in several hundred million in ARR.

    I knew of at least 3 other similarly large businesses doing this. All the way back in 2015. My current company today builds a static site from a Wordpress backend and I was totally uninvolved in this work (or even suggesting it). The user that this author thinks is a fable is very very real. There is absolutely a market for a CMS backend for an SSG.

    Not that I as a developer would have used it, but if my employers could have paid a company for what I built in a nice box instead of paying my salary, they would have.

  • ChrisArchitect 1 hour ago
    Aside, but related: wish this had been shared around here last month when it broke.

    https://www.11ty.dev/blog/build-awesome/

    Safe to say there's a number around HN who have used/are using 11ty and might have some interest.

    Am grateful for Zach's dedication over the years and believer in what 11ty stands for (and more recently what webc brings to the table/ecosystem)

  • SoftTalker 2 hours ago
    Didn't read because of the fuckery with the mouse pointer. Why do sites have to do this crap.
    • Sajarin 14 minutes ago
      You can turn it off, there's a little toggle at the bottom of the page.
    • Dylan16807 1 hour ago
      Are you calling a custom mouse icon crap/fuckery that makes you leave the site, or was there something I missed? If you are that's a pretty big overreaction. And it's probably worth you setting the single line to disable `cursor` on all sites via userContent.css or a styling extension.
    • Brajeshwar 2 hours ago
      It has been a while (I think ever since Safari introduced Reader Mode), and I do almost all my reading on websites in Reader Mode. For some websites, I have set to “Use Reader Mode when Available,” such as that of paulgraham.com, daringfireball.net, and quite a few others with horrible Typography.