Remember we require console to debug javascript so below will be usefull.
Node do not logs objects as javasript does after certain level, to do so use
console.log(JSON.stringify(obj, null, 2));
or setrequire('util').inspect.defaultOptions.depth = null;
.
if above is hard then just use string format and do below.
// %o tells console.log() to string-format and log obj in its place
console.log('%o', obj);
Top comments (2)
I didn't know the second one :) Thanks
You are welcome, I'm glad you found it useful.