Last active
February 3, 2016 00:13
-
-
Save aackerman/0daf9f149497e9d3a26f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NodeJS Debugging | |
## Debugger API | |
https://nodejs.org/api/debugger.html | |
## Node Inspector | |
https://github.com/node-inspector/node-inspector | |
## Chrome2Calltree | |
https://github.com/jlfwong/chrome2calltree | |
## Profiling | |
https://nodejs.org/en/docs/guides/simple-profiling/ | |
https://github.com/node-inspector/v8-profiler | |
http://stackoverflow.com/questions/1911015/how-do-i-debug-node-js-applications/16512303#16512303 | |
https://github.com/joyent/node-stackvis | |
http://mattdesl.svbtle.com/debugging-nodejs-in-chrome-devtools | |
## Core Dumps | |
http://stackoverflow.com/questions/8704331/tools-to-analyze-core-dump-from-node-js | |
http://www.ibm.com/developerworks/library/wa-ibm-node-enterprise-dump-debug-sdk-nodejs-trs/index.html | |
## Logging | |
* Process hooks | |
* Domains | |
## Memory Leaks | |
http://www.nearform.com/nodecrunch/self-detect-memory-leak-node/ | |
http://blog.yld.io/2015/08/10/debugging-memory-leaks-in-node-js-a-walkthrough/ | |
https://strongloop.com/strongblog/node-js-performance-tip-of-the-week-memory-leak-diagnosis/ | |
http://www.toptal.com/nodejs/debugging-memory-leaks-node-js-applications | |
## IDE Debugger | |
* VSCode | |
* Webstorm | |
* http://blog.jetbrains.com/webstorm/2015/05/node-js-profiling-in-webstorm-part-1-cpu-profiling/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment