This library helps you to debug JavaScript objects. It does not replace the console.log nor the console.dir, but compliments them by outputting objects in a more lucid manner.
npm i dev-say --save-dev
Outputs objects in a lucid maner:
const someObject = {
keyA: 'Hello, Object!',
keyB: {
keyC: {
someArr: [1,2,3],
keyD: {
someValue: 'Hello, Value!'
}
}
}
};