Earlier quoted context omitted.
They feel the slowness of the page load
Not on their iPhones operating over 5G or the corporate WiFi.
Building an HTML-first site doubled our users overnight
41–50 of 605 posts
Re: Building an HTML-first site doubled our users overnight
#42Re: Building an HTML-first site doubled our users overnight
#43Re: Building an HTML-first site doubled our users overnight
#44I was a little confused by "doubled our users" since that's more about inbound traffic than site experience. I guess it's really shorthand for "halved form abandonment" which is still pretty great.
Re: Building an HTML-first site doubled our users overnight
#45People who built a crappy website using React are just as likely to build a crappy website using Astro, HTML-first approach or any other technology
Re: Building an HTML-first site doubled our users overnight
#46Maybe this is heretical in today's AI hype climate but...weirdly due to the rise of AI, then AI-slop polluting everything, a lot of old fundamentals are coming back. Clear, well-structured, descriptive content on a well-built page has a better shot of being picked up for SEO/AEO/whatever which are the same best practices from 2005. A lot of these tips and tricks and hacks just aren't going to move the needle as much…
Re: Building an HTML-first site doubled our users overnight
#47Re: Building an HTML-first site doubled our users overnight
#48[flagged]
Re: Building an HTML-first site doubled our users overnight
#49Empathy and respect for users is what product managers should be doing. Shipping tens of megabytes per web page is impolite, if not outright disrespectful to users.
Re: Building an HTML-first site doubled our users overnight
#50I've found it's enough for most projects.
One of my sites is image heavy and serves 10 TB of traffic per month. For this, I use the following setup:
1. S3 (I wanted reliable data storage) 2. In front of it, I have Cloudflare (with Tiered Cache enabled, which makes POPs prefer pulling from Cloudflare rather than the origin). I've set rules to cache everything on both the browser and Cloudflare for 1 year, ignore origin cache policies, ignore query strings, etc., and I simply use immutable objects that require revisioning. 3. BunnyCDN in front
Cloudflare will not let you run an image heavy site on its own, so I use this approach to massively cut the bills. Their policy says you cannot use it primarily for images; it must be used for HTML, CSS, JavaScript, and other site content.
And if you run only S3, the bills will be huge.
But yes, lately I’ve been building mobile apps. PWAs are limited; the OS can evict IndexedDB storage, so I cannot offer people reliable data storage in the app without sign up or involving a backend.
What can I do? So I was forced to switch to Flutter on Android, but I ran into another pain point: app updates sometimes spend a lot of time "under review," which is frustrating. For the same app, I maintain a web app that is very quick to update by comparison.
I wonder why there isn't a mobile OS that simply lets you build apps with JavaScript, HTML, and CSS and gives you reliable storage without all this effort.
I like how quickly you can update PWA app.