9

I have a big application written in ReactJS and wants to find out the memory leaks happening in my code. Is there any tool or technique to find the same?

Regards, SJ

Sushil Jain
  • 477
  • 1
  • 5
  • 13

1 Answers1

13

use google chrome's developers tools Profiling memory performance,
by taking snapshots, Take Heap Snapshot and do Comparison. basically take a snapshot before action, then after action and you can check the "Comparison" view to see if anything was detected.

Ashish Kamble
  • 2,555
  • 3
  • 21
  • 29