Node.js objects inspector with color highlighting
npm install q-i

Useful for debugging big objects, like webpack configuration.

* Compact and readable output
* No unnecessary quotes
* Color highlighted
* Collapses huge arrays and objects (more than 30 items by default)
``bash`
npm install q-i
`js
const { print, stringify } = require('q-i');
const obj = { a: { x: 41, y: { z: 42 } } };
print(obj);
console.log(stringify(obj));
/* =>
{
a: {
x: 41,
y: {
z: 42
}
}
}
*/
`
`js`
print(obj, { maxItems: Infinity })
stringify(obj, { maxItems: Infinity })
Collapse arrays with more than maxItems items and objects with more than maxItems` keys.
The change log can be found on the Releases page.
Everyone is welcome to contribute. Please take a moment to review the contributing guidelines.
Artem Sapegin and contributors.
MIT License, see the included License.md file.