Skip to content

Instantly share code, notes, and snippets.

@eddex
Last active April 24, 2017 12:28
Show Gist options
  • Save eddex/1f0cbbe2b4da1552fc5367237678fee5 to your computer and use it in GitHub Desktop.
Save eddex/1f0cbbe2b4da1552fc5367237678fee5 to your computer and use it in GitHub Desktop.
how to debug log full object in Node.js
const util = require('util')
console.log(util.inspect(myObject, {showHidden: false, depth: null}))
// alternative shortcut
console.log(util.inspect(myObject, false, null))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment