MGMohit Guptaintechie-talks.hashnode.dev·Dec 13, 2025 · 9 min readUnderstanding 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...00
MGMohit Guptaintechie-talks.hashnode.dev·Apr 20, 2025 · 4 min readLeveraging 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...00
MGMohit Guptaintechie-talks.hashnode.dev·Apr 20, 2025 · 11 min readReact 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...00