jsonpretty

0.0.1 • Public • Published

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

Dependencies (0)

    Dev Dependencies (3)

    Package Sidebar

    Install

    npm i jsonpretty

    Weekly Downloads

    9

    Version

    0.0.1

    License

    BSD

    Last publish

    Collaborators

    • eugeneware