Comment on How do you wrap your head around large established software projects in order to contribute to them?

vhostym@lemmy.world ⁨1⁩ ⁨year⁩ ago

Personally, I would say to pick a specific implementation instance and debug it.

Let me use a button as an example.

If you have a button, say, Subscribe, attach your debugger where execution will go immediately upon click. Follow the path by stepping into (not over) the base implementation(s). Stop along the way if there are any calls that you do not understand what it is doing or why.

I most scenarios, there is common functionality that all objects would need. All buttons need to do x, y, z. All forms need to validate a, b, c, and forms of this specific type also need to validate d.

Usually the tradeoff in complexity upon first learning the code base is offset by the ease of extensibility once you are familiar with it.

source
Sort:hotnewtop