DEV Community

Discussion on: Is React really that bad?

Collapse
 
matthewpardini profile image
Matthew Pardini • Edited

Bundle size is what you make of it. If you want a small bundle, code split and render on the server. Webpack does tree shaking as well, so your bundle shouldn’t be bloated even on basic projects out of the box. But not all projects care about bundle size. I work in react on a desktop application. We don’t care about google speed scores, as long as it loads relatively quickly. React isn’t just used for websites

Collapse
 
psycoder01 profile image
Aakash Chaudhary

Thank you for the comment. It's upto the developer to optimize things not by the framework itself. Good Points ! Much Appreciated!