Is it possible to print an objects contents e.g. methods and attributes in Node.js?
At the moment I\'m trying to print the session object and get the following:
This will work with any object:
var util = require("util"); console.log(util.inspect(myObject, {showHidden: false, depth: null}));