2

I'm currently new to Node.js, as I had previous experience with PHP server before, I know that I can debug the server in PHPStorm that supports breakpoints and I can follow the process step by step. I'm wondering if there is a similar tool for Node.js to perform such kind of debugging. Thanks a lot.

W.Chen
  • 407
  • 1
  • 4
  • 6

3 Answers3

0

I googled "node phpstorm debug" and found this. Hope that helps!

S M
  • 8,155
  • 3
  • 35
  • 36
0

I'm a huge fan of the node-inspector for these purposes-- let's you use the Chrome dev tools for debugging Node applications.

(From this SO.)

Community
  • 1
  • 1
Alexander Nied
  • 12,804
  • 4
  • 25
  • 45
0

I've heard good things about vscode. Here's more info https://code.visualstudio.com/Docs/editor/debugging

Jorge Vargas
  • 1,031
  • 11
  • 25