Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

10 Answers

node-inspector could save the day! Use it from any browser supporting websockets. Breakpoints, profiler, livecoding etc... It is really awesome.

share|improve this answer
17  
Correction, it is fantastically awesome. Best GUI debugging environment ever. – Daniel Beardsley Apr 17 '11 at 5:13
6  
Wish node-inspector was active. The profiling component needs to get some love. – Jonathan Dumaine Dec 5 '11 at 0:32
1  
You can use github.com/ketamynx/node-codein instead of node-inspector's console. It can display objects. – GRIGORE-TURBODISEL Jun 29 '12 at 17:30
2  
Unfortunately for me, node-inspector doesn't work with the latest versions of Node.js and it hasn't supported logging to the browser console since v0.1. node-codein was just buggy. So, I wrote my own module to help with debugging by allowing you to dump objects and such out to your web browser console. I thought it may be of use to someone else: node-monkey. Plus it works in both Firefox AND Chrome. – Justin Warkentin Oct 20 '12 at 3:17
2  
Since this was such an apparently amazing and popular tool, surely the fact that the original author has admitted they no longer have the resources to maintain it wouldn't be a problem as the open source community could pick it up? – PeterT Mar 21 at 18:13
show 5 more comments
up vote 87 down vote accepted

The V8 debugger released as part of the Google Chrome Developer Tools can be used to debug node.js scripts. A detailed explanation of how this works can be found in the node.js github wiki.

There is also ndb, a command line debugger written in node itself.

share|improve this answer
3  
I'm interested, after the presentation at Google IO that Paul Irish and Pavel did is it now possible to debug node.js straight to Chrome Developer Tools without the need for eclipse? – balupton May 19 '11 at 20:35
+1 Worked very well for me. Using a fresh Eclipse 3.x, x64 version on Mac OS X. The installation instructions are well written as well. Thank you. – amateur barista Jan 6 '12 at 16:40

There's a few tools and ways out there:

Interactive Stack Traces with traceGL - Shareware

  1. Guide here

Profiling with Profiler

  1. Install globally npm install -g profiler
  2. Start your process with node --prof this will create a v8.log file
  3. Build nprof by running /Users/balupton/.nvm/v0.8.22/lib/node_modules/profiler/tools/build-nprof
  4. Run /Users/balupton/.nvm/v0.8.22/lib/node_modules/profiler/nprof this will read the v8.log profile and give you nice ouput

CPU and Memory Profiling with NodeTime

  1. Install to your app npm install nodetime
  2. Include in your app require('nodetime').profile()
  3. Follow the instructions it will output to console

Wekit Developer Tools Debugging with Node Inspector

  1. No longer supported unfortunately, however usually works if you downgrade: npm install -g node-inspector@0.1.10
  2. Run your app in debug mode: node --debug-brk your/node/program.js
  3. In another terminal window run node-inspector: node-inspector
  4. Open http://127.0.0.1:8080/debug?port=5858

Webkit Developer Tools Profiling with Node Webkit Agent

  1. Install to your app npm install webkit-devtools-agent
  2. Include in your app agent = require('webkit-devtools-agent')
  3. Activate the agent: kill -SIGUSR2 <your node process id>
  4. Access the agent via the appropriate link

Interactive Cloud9 Debugging

  1. Guide here

Heapdumps to Webkit Developer Tools

  1. Tool and guide here

Logging Libraries that output Debugging Information

  1. Caterpillar
  2. Tracer

Flamegraphs with Dtrace and StackVis

  1. Only supported on SmartOS

Flamegraphs with Chrome Developer Tools

  1. Coming soon

Benchmark with Apache Bench

  1. Benchmark a ton of requests to your server ab -n 100000 -c 1 http://127.0.0.1:9778/
share|improve this answer

Node.js version 0.3.4+ has built-in debugging support.

node debug script.js

Manual: http://nodejs.org/api/debugger.html

share|improve this answer
Do you have any links to documentation of how to use it? – Fabian Jakobs Jan 16 '11 at 12:17
1  
I don't have any docs. just updated to v0.3.5. put a line "debugger;" in your code which will act as break point. It works like ndb / gdb. after you do "node debug script.js" type help. u will see the command it support. p = print, l = list... so you don't need to type the full world – JulianW Jan 20 '11 at 23:59
3  
See screencast at vimeo.com/19465332 – mjhm Jul 30 '11 at 1:12
1  
Note, under windows it's "node.exe --debug myscript.js" but it still don't work. – Marc Sep 6 '11 at 12:13
3  
You probably have to change --debug to debug without the dashes. That's how I finally got it to work. It's confusing that --debug and debug do two different things. – benekastah Oct 7 '11 at 5:55

I personally use JetBrains WebStorm as its the only JavaScript IDE that I've found which is great for both frontend and backend JS.

Its works on multiple OS's and has nodejs debugging built-in (as well as a ton of other stuff](http://www.jetbrains.com/webstorm/features/index.html).

My only 'issues'/wishlist items are were:

  1. It seems to be more resource hungry on Mac than Windows No longer seems an issue in version 6.
  2. It would be nice if it had Snippet support (like those of Sublime Text 2 - i.e. type 'fun' and tap 'tab' to put in a function. See @WickyNilliams comment below - With Live Templates you also have snippet support.
share|improve this answer
4  
webstorm does have snippet support BTW ;-) though they're known as "Live Templates" instead of snippets. – WickyNilliams Sep 26 '12 at 15:12

There is built-in command line debugger client within Node.js. Cloud 9 IDE have also pretty nice (visual) debugger.

share|improve this answer

Theseus is a new project by Adobe research which lets you debug your Node.js code in their Open Source editor Brackets. It has some interesting features like real-time code coverage, retroactive inspection, asynchronous call tree.

screenshot

share|improve this answer

Can't make a comment yet, but I wanted to share this.

I was trying node-inspector (currently the top answer) and I kept getting an EADDRINUSE error. Finally realized I had Jenkins running as a service. Disabling that service and I was all set. This is a beautiful debugger. Also, since I primarily develop javascript using chrome's debugger, this feels just like home.

share|improve this answer

if you need a powerful logging library for node.js, Tracer https://github.com/baryon/tracer is a better choice. it output log messages with timstamp, file name, method name, line number, path or call stack, support color console, and support database, file, stream transport easily. I am author.

share|improve this answer
6  
I believe this product is yours and I think you should mention that – Alfred Jul 11 '12 at 18:26

Assuming you have node-inspector installed on your computer (if not just type 'npm install -g node-inspector') you just have to run:

node-inspector & node --debug-brk scriptFileName.js

and paste the URI from the command line into a WekKit (Chrome / Safari) browser.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.