JavaScript is needed to actually build anything useful
Not even close. I wrote a management system for the keyfobs at my makerspace. I had some JavaScript in there previously for things like loading up logs with pagination over ajax calls or searching for members by name. I took all that out and made it straight server side HTML. It’s fast, takes minimal browser memory, and the back button works with zero fuss.
Just try making an application that way sometime. Yes, you can find places for targeted use of JavaScript, but every web dev should at least try making a project without it.
the_wiz@feddit.org 2 weeks ago
Tell this to the people who build things you would call today a “Webapp” with CGI written in C.
NigelFrobisher@aussie.zone 2 weeks ago
So many basic pages are still done as an SPA when they’d work fine as a postback form. It’s infuriating, but web development is rife with magic hammers.