Debug memory leaks

General about memory leaks in JS

There are essentially two types of leaks: leaks that cause periodic increases in memory use and leaks that happen once and cause no further increases in memory.

Example of a memory leaks (to test its detection with chrome)

Memory leaks in github

How to identify and fix memory leaks

Automatic detection of memory leak

Last updated