NodeJS - a step-by-step debugger for NodeJS

前端 未结 7 520
太阳男子
太阳男子 2020-12-19 01:10

I\'m looking for effective way for step-by-step debugging NodeJS server code. At this moment I use dozens of console.log()\'s and it\'s extremely hard. The perfect tool is o

相关标签:
7条回答
  • 2020-12-19 02:00

    Check WebStorm. It is a great IDE, and also you can directly run your nodejs code, or connect to a debugging-enabled node process already running. In both cases, WebStorm provides what you are looking for: trace program execution line by line and on every line check the state of every variable.

    0 讨论(0)
提交回复
热议问题