Skip to content

Instantly share code, notes, and snippets.

@VivienAdnot
Created October 12, 2018 08:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VivienAdnot/a641e4132daf0528b8e585294cfa2249 to your computer and use it in GitHub Desktop.
Save VivienAdnot/a641e4132daf0528b8e585294cfa2249 to your computer and use it in GitHub Desktop.
node console.log full object
const util = require('util');
console.log(util.inspect(myObject, { showHidden: false, depth: null }));
// alternative shortcut
console.log(util.inspect(myObject, false, null, true));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment