Problem Statement
How do you detect and fix memory leaks in Node.js?
Explanation
Use the Chrome DevTools Heap Snapshot or tools like `clinic heapprofiler` to track object growth. Common causes are global variables, unclosed streams, or forgotten timers.