this post was submitted on 25 Jul 2025
8 points (100.0% liked)

Hacker News

2197 readers
315 users here now

Posts from the RSS Feed of HackerNews.

The feed sometimes contains ads and posts that have been removed by the mod team at HN.

founded 10 months ago
MODERATORS
top 4 comments
sorted by: hot top controversial new old
[–] mindbleach@sh.itjust.works 9 points 1 week ago

Single-page application. SPA stands for single-page application.

Fucking hate when acronyms never get expanded.

[–] rimu@piefed.social 2 points 1 week ago

Piefed uses that css, of anyone wants to see it in action.

[–] StitchInTime@piefed.social 2 points 1 week ago (1 children)

Ah, yes… transitions are lovely, and modern CSS is quite the magician. But really, must the author sneer so theatrically at SPAs? His disdain bleeds through every paragraph. One might almost suspect he’s less interested in performance… and more in winning an argument.

[–] notabot@piefed.social 3 points 1 week ago

I think the author is just sick of the bloat and pointless garbage that so many sites now include. I was all ready to argue with them from the title because, to me, an SPA is a Single Page APPLICATION, which can run without communicating with the server. There's places where those are useful, but the pointless, annoying trend of loading bits of pages via javascript that the author is calling out needs to stop.

If you're making an ecom system, don't, for example, make the product page load a page frame work, then load the description, price, stock levels and whatever else with javascript initiated requests. Instead render the whole thing server side and return it in one request. It'll massively reduce the load on your servers, perform better for your users, and make your pages more indexable. Feel free to use the fancy CSS animations the author suggests, at least they degrade sensibly, with no loss of functionality.