Hacker News new | ask | show | jobs
by hazz99 1705 days ago
With webview based applications becoming more and more common, maybe HTML is all we’ll ever need.
2 comments

I'm a Front End Dev and work with SPAs for the past 2 years. Working an offline-enabled PWA powered by Svelte and Redux. Honestly, I have a hunch that an HTML-based oriented development can still provide a great (measured) offline experience, without needing to rebuild wholesale to SPA.

It's a totally different ballgame if the app is mostly client-side utility anyway (calculators, etc), but the HTML + a bit of JS handling Service Worker and offline presentation should enable a great offline experience. I haven't seen it done in a large scale, but it should work.

Not if you want to adjust your views to different screen sizes and types.
In the wild, media queries are simply not enough. Often you need some JavaScript to really make things workable on smaller screens.
Why couldn't the client provide information to the server for selecting the appropriate HTML and CSS code for that particular client?
"Some Javascript" != SPA.