VOOZH about

URL: https://thenewstack.io/wordpress-co-founder-matt-mullenweg-is-not-a-fan-of-jamstack/

⇱ WordPress Co-Founder Matt Mullenweg Is Not a Fan of JAMstack - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2020-08-31 06:00:30
WordPress Co-Founder Matt Mullenweg Is Not a Fan of JAMstack
op-ed,profile,
Frontend Development / Software Development / Tech Culture

WordPress Co-Founder Matt Mullenweg Is Not a Fan of JAMstack

Matt Mullenweg, co-founder of Wordpress, thinks the JAMstack approach to website management — which decouples frontend from backend — is a backward step.
Aug 31st, 2020 6:00am by Richard MacManus
👁 Featued image for: WordPress Co-Founder Matt Mullenweg Is Not a Fan of JAMstack
Feature image via Pixabay.

Matt Mullenweg, founding developer of WordPress and CEO of Automattic, thinks the currently trendy JAMstack approach to website management — which decouples the frontend from the backend, and doesn’t require web servers — is a backward step for the web.

“JAMstack is a regression for the vast majority of the people adopting it,” Mullenweg told me over email. “The usability and functionality is actually lower. Even rebuilding sites in JAMstack harkens back to the Movable Type days, where the bigger your site gets the slower it is to rebuild or update templates.”

Richard MacManus
Richard is senior editor at The New Stack and writes a weekly column about what's next on the cloud native internet. Previously he founded ReadWriteWeb in 2003 and built it into one of the world’s most influential technology news and analysis sites.

The rebuild process he’s referring to is the generation of static HTML pages, which in the JAMstack model is typically done by a “static site generator” — popular examples of this type of product include Gatsby, Jekyll, Next.js and Hugo. After rendering into HTML, the pages then get distributed to content delivery networks (CDNs) — like the one Netlify provides. This makes JAMstack websites faster than sites that rely on web servers (see WordPress), because they’re delivered to end users from local networks rather than from a server that resides somewhere across an ocean.

But while page download for users is typically very fast in the JAMstack model, the build time for publishers can in some cases take thirty minutes or more. Indeed, Gatsby was in the news last week for (among other things) being too slow. An aggrieved ex-Gatsby contractor, Nat Alison, claimed in a long Twitter thread that Gatsby had “molasses-slow builds.”

Being new to Gatsby, I spent the first few weeks getting acquainted with the platform. The thing that immediately stood out was how *slow* the website took to build. 30 minutes to compile the docs, blog, plugin list, etc. etc…

— Nat Alison (@tesseralis) August 12, 2020

Gatsby and other static site generators are working on ways to do incremental builds to address this problem, but Gatsby’s CEO Kyle Mathews admitted to The New Stack that “build times are proportional to site size and specific features that are used” and that “some very large or image-heavy sites can take that long.”

To Mullenweg’s point, it is debatable whether most websites or blogs need to have their entire sites pre-rendered and delivered across a CDN every time a new page is published. And as a long-time blogger myself, it does remind me of Movable Type — which I eventually migrated away from (to go to WordPress), partly because of slow build times.

With that said, there is a big difference between an old Movable Type website from 2005 and a JAMstack site now. Despite the word “static” being used a lot in JAMstack, these websites can be very dynamic. Indeed, one of the advantages of JAMstack is that developers can more easily integrate APIs and serverless functions into their site.

A Fragile Chain?

Which brings us to Mullenweg’s next gripe about JAMstack: that it relies on too many different services.

“You can patch together a dozen services, each with its own account and billing, for hundreds of dollars a month, to get a similar result you’d have for a few dollars a month using WordPress on shared hosting,” he said. “And it would be more fragile, because the chain is only as strong as its weakest link. You are chaining together different toolsets, logins, billing, hosting… any part of it going down can break the entire flow.”

For the basic set of website functionality — content management, build, web hosting, and design — Mullenweg has a point that JAMstack is a set of solutions, rather than being a monolithic system like WordPress.

My own experimental JAMstack blog doesn’t cost me anything to run, but it does rely on several different services. I run it on the open source Hugo framework, deploy it on Netlify via GitHub, and I now use a “headless CMS” service called Forestry. That’s four separate systems I rely on, whereas I could run the exact same blog with just WordPress.com (Automattic’s hosted solution).

As I pointed out in my columns about Gatsby’s “content mesh” and the headless CMS vendor Strapi, the JAMstack experience for content managers is not optimal. However, where the benefits of JAMstack kick in is on the development side. Developers have reason to be excited about frontend development platforms like Vercel and innovations like Netlify Functions.

If you think about e-commerce, for example, a JAMstack site can use the Stripe API to integrate a shopping cart system. A recent Netlify blog post showed how you can “sell products on Jamstack sites using Stripe Checkout to process payments and Netlify Functions to securely create Checkout sessions.”

You can integrate Stripe into a WordPress site too, of course. Typically that’s done via the WordPress plugin system (there are multiple plugin options for Stripe).

Is there a chance that the Stripe API could temporarily fail or have glitches, and thus cause problems for the website using that API? Yes, and yes — for JAMstack and WordPress, this is a risk. Indeed, if you have any experience with WordPress plugins, you will know they can cause the odd technical issue with your site.

Conclusion

While I think Matt Mullenweg raises two valid points of criticism about JAMstack — slow build times and a “fragile” chain of services — it should be noted that WordPress also has its critics in 2020. A WordPress site can be painfully slow sometimes, perhaps due to a faraway web server or a troublesome plugin. And the Gutenberg block-based editor, introduced into WordPress 5.0 in December 2018, has attracted plenty of criticism (it currently has an average rating of two out of five stars on wordpress.org).

Personally, I like the Gutenberg editor, as it makes content creation a more modular experience — which is almost a necessity in the modern web. But it did have teething problems when it was first released and it took me months to get used to it. Not dissimilar to my current experience using JAMstack. The price of change is that it can often be disorienting at first.

So would I migrate my personal website from WordPress to JAMstack? Even though my WordPress site runs too slow for my liking, I won’t be moving it to JAMstack any time soon. That’s because WordPress has better content management functionality and requires less work to maintain. But I’ll be keeping an eye on JAMstack and will continue experimenting with those technologies. The speed benefits for end users are hard to argue against, plus I’m intrigued by the opportunities for developers.

TRENDING STORIES
Richard MacManus is a Senior Editor at The New Stack and writes about web and application development trends. Previously he founded ReadWriteWeb in 2003 and built it into one of the world’s most influential technology news sites. From the early...
Read more from Richard MacManus
SHARE THIS STORY
TRENDING STORIES
TNS owner Insight Partners is an investor in: Automattic.
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.