Is it possible to get a list of ALL variables (and their values) at that place in a node js script?
Not only like displaying this.
Also globals like this:
var http = require('http'),
util = require('util'),
fs = require('fs');
And also the super-globals ones like the node js: process or console. Really ALL possible variables at that moment ?