jsonpretty
v0.0.1
Published
Yet another JSON pretty printer
Downloads
955
Readme
jsonpretty
Yet another JSON pretty printer
Installation
Install via npm:
$ npm install jsonpretty
Usage
Take some JSON object and call like so:
var jsonpretty = require('jsonpretty');
var obj = { name: 'Bob', car: { make: 'Toyota', model: 'Camry' } };
console.log(jsonpretty(obj));
This will output:
{
"name": "Bob",
"car": {
"make": "Toyota",
"model": "Camry"
}
}