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:
function prettyJSON(obj) { console.log(JSON.stringify(obj, null, 2)); } // obj -> value to convert to a JSON string // null -> (do nothing) // 2 -> 2 spaces per indent level
JSON.stringify on MDN