Hello,
 
I am trying to debug a very simple app in node.js and I am having problems.
 
Here are my stages:
 
*1. In node.js console:*
npm install -g node-inspector
 
*2. In app.js:*
var foo = function(){
  var a = 3, b = 5;
  debugger;
  var bar = function() {
    var b = 7, c = 11;
    a += b + c;
    debugger;
  }
  bar ();
  debugger;
};
foo();
 
*3. In node.js console:*
node --debug-brk app.js
 
Response: debugger listening on port 5858
 
*4. In another node.js console:* 
node-inspector
 
Response: 
info  - socket.io started
visit http://0.0.0.0:8080/debug?port=5858 to start debugging
 
 
However if I browse to 
*http://0.0.0.0:8080/debug?port=5858*<http://0.0.0.0:8080/debug?port=5858> I 
just get:
 
This webpage is not available
The webpage at *http://0.0.0.0:8080/debug?port=5858* might be temporarily 
down or it may have moved permanently to a new web address.
Error 108 (net::ERR_ADDRESS_INVALID): Unknown error.
Any ideas where I am going wrong here?
Thanks, Dave J.
 

-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

Reply via email to