https://github.com/ufocoder/javascript.memory-leaks
Example and resources with fixes and explanations about Javascript memory leaks
https://github.com/ufocoder/javascript.memory-leaks
examples hacktoberfest javascript leaks memory
Last synced: 6 months ago
JSON representation
Example and resources with fixes and explanations about Javascript memory leaks
- Host: GitHub
- URL: https://github.com/ufocoder/javascript.memory-leaks
- Owner: ufocoder
- Created: 2017-10-11T19:41:40.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-02-04T13:07:48.000Z (over 1 year ago)
- Last Synced: 2025-04-19T02:23:14.950Z (6 months ago)
- Topics: examples, hacktoberfest, javascript, leaks, memory
- Homepage:
- Size: 16.6 KB
- Stars: 45
- Watchers: 2
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Javascript Memory Leaks Page
============================## Examples
* [Global variables](./docs/GlobalVariables/README.md)
* [Cache service](./docs/GlobalVariables/CacheService.md)
* [Callbacks](./docs/Callbacks/README.md)
* [Endpoint status](./docs/Callbacks/EndpointStatus.md)
* [Not killed timers](./docs/NotKilledTimers/README.md)
* [Gonzalo Ruiz de Villa Modified Example](./docs/NotKilledTimers/GonzaloRuizDeVillaModifiedExample.md)
* [Closures](./docs/Closures/README.md)
* [Not used code](./docs/Closures/NotUsedCode.md)
* [MeteorJS Example](./docs/Closures/MeteorJSExample.md)
* [Promise.race Example](./docs/Closures/Promise.race.md)
* [DOM References](./docs/DOMReferences/README.md)
* [Simple static memory leak](./docs/DOMReferences/SimpleStaticMemoryLeak.md)
* [jQuery](./docs/JQuery/README.md)## Resources
* [Memory leaks in Javascript](https://slides.com/xufocoder/memory-leaks-in-the-javascript-4)
* [Memory leak patterns in JavaScript](https://www.ibm.com/developerworks/web/library/wa-memleak/wa-memleak-pdf.pdf)
* [Memory Analysis 101](https://developer.chrome.com/devtools/docs/memory-analysis-101)
* [Fixing Memory Leaks in AngularJS and other JavaScript Applications](https://www.codeproject.com/Articles/882966/Fixing-Memory-Leaks-in-AngularJS-and-other-JavaScr)
* [The Breakpoint Ep. 8: Memory Profiling with Chrome DevTools](https://www.youtube.com/watch?v=L3ugr9BJqIs)
* [Effectively Managing Memory at Gmail scale](https://www.html5rocks.com/en/tutorials/memory/effectivemanagement/)
* [Memory leak issues on kentcdodds.com](https://www.youtube.com/watch?v=I940kjuhaJI)