Tag: clean-code
All the articles with the tag "clean-code".
Tech Watch Posts
Feature-based React Architecture
Published: at 01:52 PMHow to create a feature-based React architecture that allows large scale applications
React Anti-Pattern: Stop Passing Setters Down the Components Tree
Published: at 02:47 PMLet's see why passing useState setters as props creates abstraction leaks and tightly couples child components to parent implementations.
The magic of keeping one level of abstraction per function
Published: at 03:33 PMThis article explains the importance of maintaining a single abstraction level within functions, a technique that enhances readability and simplifies debugging. By keeping each function focused on a single level of detail, developers can create cleaner, more maintainable code. The post provides examples to illustrate this concept, highlighting its role in writing effective, understandable functions.