Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does someone used node-inspector with Grunt for application debugging? If not, Can you recommend a debugging tool for Grunt based apps?

I'm working with nodejs for a server side app and I have Grunt to use separated tasks (this is because users can execute tasks separately).

Thanks in advance

share|improve this question
console.log is your friend.. I would love to access node-inspector, but i think the debug tools are not part of V8. As i understand it, the debug tools are a web app in their own right. Correct me if im wrong here because I would like to do what your attempting. – iancrowther Sep 5 '12 at 14:11
Yes, logging system (I mean console.log or other kind of logging mechanism) will be always our friend, but what I am needing, is a different and more debuggable way. By now, I found some missing requirements to my project with grunt so I've removed by now and I am using nodejs as it own so I can debug using node-inspector now. I know, it is not the solution, but it works. I think, in a future, I will add grunt again with node-inspector and other tools/features added. Last but not least, grunt it's awesome! I'm using it in other projects and really rocks! – blackdragon Sep 5 '12 at 20:39
Just started playing around with Grunt, also interested in that question... – Dmitry Pashkevich Sep 13 '12 at 14:56
@iancrowther, the tools web inspector uses are in V8. There is a project called node-inspector that talks to node --debug, providing the debug info to a browser that connects. This is awesome, because you can then connect Chrome to the node-inspector process, and use all the web inspector tools to debug your app. github.com/dannycoates/node-inspector – David Souther Oct 5 '12 at 3:52

3 Answers

To run grunt in debug, you need to pass the grunt script to node explicitly:

node --debug-brk $(which grunt) task

and put a debugger; line in your task. node-inspector will then provide debugging tools.

share|improve this answer

To debug, we have to modify the grunt file under bin. On my machine, grunt is installed globally, so I went to /usr/local/lib/node_modules/grunt/bin I opened the file and modified:

#!/usr/bin/env node

To

#!/usr/bin/env node --debug-brk

--debug-brk will break on the first line of javascript ran.

Doing that alone isn't quite enough though, since you won't be able to find you're grunt task js file in the drop down in node inspector, so you have to modify the file you're interested in debugging by adding debugger; where you want the breakpoint to happen. Now you can click continue after the first break, and you'll break on you're debugger; line

Pretty kludgy, but it's the only way I've found so far.

share|improve this answer
1  
This is incredibly kludgy, since it relies on a variety of behavior in /usr/bin/env and undocumented magic between # and \n in the shebang line. – David Souther Oct 5 '12 at 3:49
1  
It does not work for me. Grunt still runs without debug mode. – gevgeny Nov 17 '12 at 15:46
It gives me error that command not found, some black magic – llamerr Dec 18 '12 at 15:03

Since none of the described variants does not work for me I found out another one. Run

node --debug-brk c:\Users\username\AppData\Roaming\npm\node_modules\grunt\bin\grunt taskname

from cmd in a directory with your grunt.js script. Do not forget, of course, put debugger; line in necessary places.

share|improve this answer
Starting with grunt 0.4 the grunt entry point is part of the grunt-cli package: node --debug-brk [..]\node_modules\grunt-cli\bin\grunt – mistaecko Mar 20 at 6:35

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.