[nodejs] Re: how can i programmatically access v8 debugger variables list

2015-02-11 Thread Leo Cono
NodeClipse Eclipse plug-in for Node.js does not work with the embedded V8 Debugger. Instead I accessed the JavaScript Application module exports to do reflection with Node.js apps since "this" object is empty. Here is the code: app.js code: var business_object = require('./user.js'); var node_

[nodejs] Re: how can i programmatically access v8 debugger variables list

2015-02-08 Thread Leo Cono
V8 embedded debugger is not compatible with NodeClipse I am using node.js and "this", as well as, this.global is empty I finally figured it out on my own and this is how you do reflection with Node.js. Here is an Aspect Oriented Programming (AOP) Container using Cujo.js Meld.js app-separate-fil

[nodejs] Re: how can i programmatically access v8 debugger variables list

2015-01-29 Thread Andrey
You need to issue backtrace / frame / scope / scopes requests - see https://code.google.com/p/v8-wiki/wiki/DebuggerProtocol#Request_backtrace You can use built-in debugger client for this ( ` require("_debugger") ` ) or npm modules - such as https://github.com/node-inspector/v8-debug or https:/