How to debug node.js applications
Posted
by Fabian Jakobs
on Stack Overflow
See other posts from Stack Overflow
or by Fabian Jakobs
Published on 2009-12-15T22:50:07Z
Indexed on
2010/04/27
23:43 UTC
Read the original article
Hit count: 774
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.inspect(someVariable));
There must be a better way to debug. I know that google Chrome has a command line debugger. Is this debugger available for node.js as well?
© Stack Overflow or respective owner