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:
Try this one:
console.log("Session: %j", session);
If the object could be converted into JSON, that will work.