techie-talks.hashnode.devUnderstanding Garbage Collection Impact on Node.js API LatencyWhen you notice unexpected latency in your Node.js API while external service responses are reasonable, garbage collection (GC) is often the culprit. The V8 engine's aggressive memory management, particularly when handling high-frequency object creat...Dec 13, 2025·9 min read
techie-talks.hashnode.devLeveraging Composition and Rendering Patterns in ReactLeveraging Composition and Rendering Patterns in React In this article, we explored how passing components as props can help prevent unnecessary re-renders in react. Now, let’s take this a step further and dive into a pattern that builds on this con...Apr 20, 2025·4 min read
techie-talks.hashnode.devReact Performance Pitfalls: Fixing Re-RendersWhen we encounter performance issues in React applications, the root cause often boils down to unnecessary re-renders of components. To address this, developers frequently turn to method like React.memo, useMemo, and useCallback. However, while these...Apr 20, 2025·11 min read