[nodejs] how to display the value of a variable in the deugger?

2012-07-12 Thread josh
// test.js var i=0; debugger; // node debug test.js // n(next) // backtrace=> #0 test.js:2:1 // i => i not defined how to display the value of i? -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List

Re: [nodejs] how to display the value of a variable in the deugger?

2012-07-12 Thread Dan Milon
http://nodejs.org/api/debugger.html > repl > i On 07/12/2012 10:47 AM, josh wrote: // test.js var i=0; debugger; // node debug test.js // n(next) // backtrace=> #0 test.js:2:1 // i => i not defined how to display the value of i? -- Job Board: http://j