Beautify javascript value to JSON string
npm install prettify-js
Convert JavaScript value to readable JSON string for terminal/console.
$ npm install prettify-js -D
``
var beautify = require('prettify-js');
console.log(beautify({hello: 'world', body: 'This is pretty json' }));
-----
{
"hello": "world",
"body": "This is pretty json"
}
``