1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 12:10:22 +02:00

Added content on memory leaks, its causes and its detectors (#2342)

* Added content on memory leaks, its causes and its detectors 

also added some free blog links for more information

* Update content/roadmaps/107-nodejs/content/116-nodejs-more-debugging/100-memory-leaks/readme.md

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Aarti Verma
2022-10-12 03:20:32 +05:30
committed by GitHub
parent 91bf047be8
commit e4c3bc3780

View File

@@ -1 +1,8 @@
# Memory leaks
# Memory Leaks
Memory leaks are caused when your Node.js apps CPU and memory usage increases over time for no apparent reason. In simple terms, a Node.js memory leak is an orphan block of memory on the Heap that is no longer used by your app because it has not been released by the garbage collector. Its a useless block of memory. These blocks can grow over time and lead to your app crashing because it runs out of memory.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink badgeText='Website' colorScheme="yellow" href='https://sematext.com/blog/nodejs-memory-leaks/'>Memory leaks in Node.js</BadgeLink>
<BadgeLink badgeText='Read' colorScheme="yellow" href='https://sematext.com/blog/nodejs-memory-leaks/#what-causes-them-common-node-js-memory-leaks'>Memory leaks causes</BadgeLink>
<BadgeLink badgeText='Documentation' colorScheme="yellow" href='https://sematext.com/blog/nodejs-memory-leaks/#node-js-memory-leak-detectors'>Memory leaks detectors</BadgeLink>