DEV Community

Discussion on: Why should I care about React?

Collapse
 
raddevon profile image
Devon Campbell • Edited

Create React App addresses some of the problems you've mentioned here. It allows me to write code, save it, and see the results almost immediately in the browser.

Source maps address being able to debug with the code I wrote rather than the built code. These come for free with an app generated with Create React App.

The build process is still there, but it has little impact on your development workflow.