DEV Community

Discussion on: ReactJs Roadmap🗺 for beginners

Collapse
 
lesleyvdp profile image
Lesley van der Pol • Edited

Interesting compilation! I think a great addition would have been an advanced topic. It could be a section after basics and contain topics that are interesting when talking about larger-scale react applications. It could contains more advanced topics such as:

  • Hooks like useCallback, useMemo and useReducer
  • Writing custom hooks
  • Improving performance and catching performance quirks
  • React.memo
  • Different libraries to make HTTP requests

I also wonder if the styling UI section shouldn't be diving a little bit deeper into libraries, rather than grid and flexbout. Mostly because the pre-requisites already contain a basic understanding of CSS. You could for example mention what approaches are currently used a lot in react applications, such as styled components, css modules or emotion.

Collapse
 
lukeryan93 profile image
Luke Ryan

+1 on CSS Modules, I'm seeing that used more and more frequently. Material-UI is a popular one too to consider.