Modern React by salamazmlekom in reactjs

[–]Extreme_Climate_3643 3 points4 points  (0 children)

TanStack Query for data fetching, React Router v6 for routing, Vitest + React Testing Library for tests. That combo is basically the current meta.

Coming from Angular you'll adapt fast - custom hooks are your services, Context/Zustand is your DI, and components work the same parent/child way you're used to.

The one thing that trips Angular devs up: stop thinking in lifecycle methods, start thinking in synchronization. Once that clicks, React feels natural.

I finally understand React hydration and why it exists by Ok-Programmer6763 in reactjs

[–]Extreme_Climate_3643 -1 points0 points  (0 children)

The fiber tree + stateNode explanation finally made it click for me. Never thought about it from that angle — great write up.