React is like a whole new world compared to what I've been used to. I’ve mostly been doing HTML, CSS, and vanilla JavaScript before diving into React, and to be honest it's been a blast learning the framework.
First, I learned that React is all about components. Everything becomes a component, and our team noticed this when we were building our frontend components for our web app. If you've ever built a site with vanilla JS, you might’ve had to deal with a bunch of DOM manipulation, manually updating elements, and keeping track of which parts of the page need to change. With React, you basically just make these self-contained components and React does a lot of the heavy lifting for you. If something changes in your data, React re-renders only the parts of the page that need to update, which is way easier than trying to manually update stuff with JS. I like that React uses JSX, which is kinda like mixing HTML with JavaScript. It feels like I'm writing HTML, but I can also use JavaScript in the same file. It’s cool because you can easily write logic for rendering parts of the page based on the data.
But I’ll be real, React can be a bit overwhelming at first. You’ve got things like state, props, hooks, and context to learn. If you're used to just sticking everything in a single HTML file and throwing JavaScript in there, it can feel like you’re juggling a lot of new concepts. I struggled a bit with how to manage state in React at first—it’s not like vanilla JS where you just use global variables or something.React projects can get pretty messy if you don’t manage your code properly. Since you’re building your app with a bunch of components, things can get a little chaotic if you don’t structure your project well from the start. Also, React’s learning curve can be steep for newcomers—especially with things like hooks and state management.
Overall, I’m liking React so far, but it definitely feels like a whole new way of thinking about building web apps. Though it can get confusing sometimes, it is very useful and powerful for web developers. I'm looking forward to leveling up my React knowledge as we build more of our cst 438 project.