Today if I were to write a cgi script it would have to send json payloads to the JS front end because round trip latency on phones is between 100 to 500ms to hit a dns server. I was getting lower latency on dialup in 1996. On my desktop it's 2ms on a bad day.
You can't just use HTML because browsers have mutated to fat clients for a X like protocol which is a mishmash of html, css, js, and whatever else someone's decided to throw on top of it.
We're using screwdrivers as axes and everyone is acting like this is some type of acceptable outcome.
Just because a site is responsive doesn't mean it's HTML. The fact that a lot of people assume that you can't have a responsive site with JS is all the indictment of $current_year front end development you need.
These are some of the JS functions HN runs in the background, on top of the CSS:
function $ (id) { return document.getElementById(id); }
function byClass (el, cl) { return el ? el.getElementsByClassName(cl) : [] }
function byTag (el, tg) { return el ? el.getElementsByTagName(tg) : [] }
function allof (cl) { return byClass(document, cl) }
...
I didn't say you can't have a responsive site with JavaScript, I said that you can have one with plain HTML. HN may use JS for a few things (upvotes?), but it's mostly full page reloads including for loading threads and posting comments.
You can't just use HTML because browsers have mutated to fat clients for a X like protocol which is a mishmash of html, css, js, and whatever else someone's decided to throw on top of it.
We're using screwdrivers as axes and everyone is acting like this is some type of acceptable outcome.