where to learn about FE performance/optimizations?
I feel that I’m fairly advanced on regular FE development (building our features on a daily basis), but not feeling confident about tracking performance, optimization techniques etc.
Anybody has any suggestion where to start learning about this stuff? Or how to approach it?
Like, let’s say, we’ve got a feature in a react project implemented in two ways - how to understand which one is more performant (faster/memory efficient, etc)?
5 Replies
Medium
4 Ways To Profile Your React App
React is fast in comparison with traditional web applications, mainly due to the VDOM architecture, however, that doesn’t mean you cannot…
https://web.dev/vitals/
The resources here will point you in the right direction
I believe Lighthouse measures these values if I am not completely mistaken?
Lighthouse is more to webvitals
if you wanna really check for perf and more
profiling is the best at that
Thank you!