Especially reddit which has such a simple UI that no frameworks are needed.
If you drop support for MSIE 11 and only support modern browsers the modern javascript is surprisingly compact.
But then your CV looks stupid: no frameworks on the list. How would you ever get a job again?
How do you get any respect if you say "I just code javascript directly on the browser", sounds like you're too stupid to learn a framework.
You will only get respect from the very best developers but not all the copy/paste 'developers', no respect from the HR department nor mediocre managers.
Use of frameworks is often blamed for bloat, but the two are completely independent.
React is about 110kB. Vue is 33kB. It's perfectly possible (and really not that hard) to write fast, small web apps with the big popular JS frameworks. It's the thoughtless stuff people do—pulling in huge libraries for tiny features, mandating the use of huge analytics packages, etc—that cause the bloat.
Whether it should all just be server-rendered is a whole other argument, but if you're going to build something the size and scale of reddit as a client-rendered app, you'd be crazy to not use one of the existing frameworks IMO. If for no other reason than you're likely to end up just re-creating a worse version of them.
I think bloat really means two different things. One is the obvious "file size" issue, and as you are mentioning it's quite possible to write small sites even using heavy-weight frameworks.
But a lot of the complaints in this thread boil down to modern sites being slow to run on computers that are only a few years old. If modern frameworks are to blame for that, it's not because they're a hundred (or more) KB. It's because they require the end user to run way more Javascript in the browser and consume far more memory than a site with minimal Javascript requires to accomplish the same thing.
As a random example, Firefox's about:performance page says that the three YouTube tabs I have open are each consuming about 50 MB of my computer's memory. That's obscene. (None of the tabs are open on a video, so this is not the result of storing videos in RAM.)
Also, I did a Lighthouse analysis of the Reddit home page in Chrome (on Desktop, but targeting mobile). The page scores less than 20/100 on performance, and takes almost twenty seconds to become interactive!! The biggest problem Lighthouse sees with the page is not the file size, but the amount of Javascript being executed. There's ~25 seconds of "main thread work" being done in my test.
If you drop support for MSIE 11 and only support modern browsers the modern javascript is surprisingly compact.
On the contrary, I'm pretty sure you could make Reddit a usable site in everything down to text-based browsers (static HTML + small bits of JS), and still have it be faster and smaller than what the new version is today.
"Modern" development is a horrible bloated mess.
I agree with the rest of your comment, however; and perhaps the solution is to not hire only "web developers", as those whose full-time job isn't to work on that stuff seem to be far better at not adding "padding" for the sake of "CV-driven development", when they are actually asked to work on websites.
If you drop support for MSIE 11 and only support modern browsers the modern javascript is surprisingly compact.
But then your CV looks stupid: no frameworks on the list. How would you ever get a job again?
How do you get any respect if you say "I just code javascript directly on the browser", sounds like you're too stupid to learn a framework.
You will only get respect from the very best developers but not all the copy/paste 'developers', no respect from the HR department nor mediocre managers.
It's an uphill battle.