How do I debug Node.js applications?

后端 未结 30 2467
暗喜
暗喜 2020-11-22 05:56

How do I debug a Node.js server application?

Right now I\'m mostly using alert debugging with print statements like this:

sys.puts(sys.inspe         


        
30条回答
  •  攒了一身酷
    2020-11-22 06:23

    A lot of great answers here, but I'd like to add my view (based on how my approach evolved)

    Debug Logs

    Let's face it, we all love a good console.log('Uh oh, if you reached here, you better run.') and sometimes that works great, so if you're reticent to move too far away from it at least add some bling to your logs with Visionmedia's debug.

    Interactive Debugging

    As handy as console logging can be, to debug professionally you need to roll up your sleeves and get stuck in. Set breakpoints, step through your code, inspect scopes and variables to see what's causing that weird behaviour. As others have mentioned, node-inspector really is the bees-knees. It does everything you can do with the built-in debugger, but using that familiar Chrome DevTools interface. If, like me, you use Webstorm, then here is a handy guide to debugging from there.

    Stack Traces

    By default, we can't trace a series of operations across different cycles of the event loop (ticks). To get around this have a look at longjohn (but not in production!).

    Memory Leaks

    With Node.js we can have a server process expected to stay up for considerable time. What do you do if you think it has sprung some nasty leaks? Use heapdump and Chrome DevTools to compare some snapshots and see what's changing.


    For some useful articles, check out

    • RisingStack - Debugging Node.js Applications
    • Excellent article by David Mark Clements of nearForm

    If you feel like watching a video(s) then

    • Netflix JS Talks - Debugging Node.js in Production
    • Interesting video from the tracing working group on tracing and debugging node.js
    • Really informative 15-minute video on node-inspector

    Whatever path you choose, just be sure you understand how you are debugging

    It is a painful thing
    To look at your own trouble and know
    That you yourself and no one else has made it

    Sophocles, Ajax

提交回复
热议问题