Reputation: 1733
How can i check if there is any Memory Leakage in my Angular 2/4 Application? What is the best tool/way to check that?
Upvotes: 2
Views: 810
Reputation: 5720
You can use the Chrome DevTools. To use it go to the Profiles panel, select the Record Allocation Timeline radio button and press the Start button. Now run the action that you suspect is causing the memory leak, and then press the stop recording button when you are finished.
Upvotes: 1