0.0.1 • Published 11 years ago

jsonpretty v0.0.1

Weekly downloads
4
License
-
Repository
github
Last release
11 years ago

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"
  }
}