Comment on nobody in webdev knows what graceful degradation is anymore
cley_faye@lemmy.world 1 week ago
it’s not a hard concept, people.
Depends. Webapps are a thing, and without JavaScript, there isn’t much to show at all.
Websites that mostly serve static content though? Yeah. Some of them can’t even implement a basic one-line message that asks to turn on JavaScript; just a completely white page, even though the data is there. I blame the multiple “new framework every week” approach. Doubly so for sites that starts loading, actually shows the content, and then it loads some final element that just cover everything up.
Scrollone@feddit.it 1 week ago
It depends. Inertia.js can pre-render pages server side, so you don’t need JavaScript to see the content.
cley_faye@lemmy.world 1 week ago
React can do SSR, too. The issue is that some sites actually means nothing if not dynamic. It makes sense to have SSR and sprinkle some JS on the client for content delivery, no issue there.