Inspect large objects in Node when debugging:
const util = require('util')
console.log(util.inspect(largeObject, {showHidden: false, depth: null}))
Hat tip to Stack Overflow. See the docs.
Inspect large objects in Node when debugging:
const util = require('util')
console.log(util.inspect(largeObject, {showHidden: false, depth: null}))
Hat tip to Stack Overflow. See the docs.