Yet another JSON pretty printer
npm install jsonprettyYet another JSON pretty printer
Install via npm:
```
$ npm install jsonpretty
Take some JSON object and call like so:
` js`
var jsonpretty = require('jsonpretty');
var obj = { name: 'Bob', car: { make: 'Toyota', model: 'Camry' } };
console.log(jsonpretty(obj));
This will output:
` json``
{
"name": "Bob",
"car": {
"make": "Toyota",
"model": "Camry"
}
}