Hacker News new | ask | show | jobs
by aosaigh 2103 days ago
Who is the Jamstack for in your opinion? I'm a web developer that makes a lot of apps and marketing sites for small to medium businesses and I find it very hard to justify the added complexity of a Jamstack architecture - there's just too many moving parts.

It seems to me you need a few things:

- A dedicated development team to manage the stack

- Enough traffic to justify the complexity

- Regular content publishing to make use of the build pipeline

- A need for speed beyond what's regularly acceptable

Great work anyway on the book, it's good to see people charging for curated knowledge.

4 comments

Added complexity? At its simplest, Jamstack is just a static site generator. A service like Netlify will do the entire build pipeline for you (for free) just by pointing it at the git repo. Or if you want to DIY the hosting, then all you have to do is find somewhere that can host static files.

Jamstack is largely about removing complexity.

At its simplest yes. But if you are proposing this as a solution to a client, they will likely want to edit content. That will have to happen on a headless CMS instance. That's whole new stack to maintain alongside. You then need to set that up and configure the SPA to talk to it (GraphQL/Apollo?). When I come back to client project in a month, is all this still going to be working ...?

Maybe, but it's certainly not less complex then a traditional Wordpress site. So I'm wondering what are the criteria for using Jamstack successfully?

As you said it could be that it's good for simple static sites but not great for more complex content-drive sites - I don't know, that's what I'm asking.

Obviously it depends a lot on which CMS you're using and I can imagine there being a lot of complexity involved.

That said, setting up something like Contentful and integrating it with NextJS is roughly a day or two of work if you're doing it for the first time. And it all works over REST so you don't have to worry about GraphQL.

You can even do "previews" now with Next thanks to preview mode: https://next-preview.now.sh/

Contentful just abstracts away the complexity (for money). It's still complex, but you're paying instead of dealing with the complexity.
i think thats a fair point but there's a lot of benefit from from that. they're able to focus on making a great CMS

there are also some open source solutions that are great. Netlify CMS works really well for a very basic page / blog management solution

a lot of the headless CMS solutions also offer generous free tiers, making it perfect for web devs to spin up a free instance for their personal sites and projects

I think it's good for simple cases where a technically minded person will be editing the content. And I think it's good for complex cases where performance is important and the organisation is large enough to support at least one employee to manage the system. I think it's (not currently) good for the in between cases.
Stackbit and Publii are two examples of tools that remove a lot of technical barriers for the simple cases you are talking about.
Other than the simplest of static/marketing sites, jamstack is just taking standard server-side rendered frameworks and splitting it up into several layers: CMS and other content sources, external APIs, build process, backend "serverless" functions, etc.

This is more moving pieces and complexity. Yes it's easier to build the frontend using modern component models but I find the tradeoff is rarely worth it.

Jamstack is not less complex, it's just complex in different areas.
I think you might be underestimating just how important speed is becoming.

Not only is it now a very important ranking factor for SEO reasons. There's also going to be a point for most websites where the complexity (I'd argue that the standard WordPress install is a lot more complex than most JamStack setups, if you're going to be digging into the code) will eventually need to be offloaded to a build process that spits out a static site, just to meet the 'acceptable' threshold.

Speed is important, but with services like FaunaDB and Fly.io you can have low latency distributed monoliths, so to speak.
i think there's varying levels of complexity to the different solutions available jamstack or not

Jamstack, the complexity might be maintaining different services, such as a headless cms and the front end. the output though is static files that you can dump into static hosting pretty easily

on the other hand, you might have a serverful solution thats all in one stack. you run into other complexities with that like having to worry moreso about scaling and managing that server for traffic

there are tradeoffs between the 2. jamstack isn't a perfect solution but it has a lot of benefits. it's also relatively young in it's architectural lifecycle, so i would imagine a lot of these pain points to be worked out as it matures

the book tries to get into both the good and the challenging

I am a solo developer. I have built 6-7 projects which fall under Jamstack. I find it that it lessens the complexity, and as a bonus I can sleep much more easily at night knowing that my sites are hosted as static websites.