🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

json-format-tool

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

json-format-tool

Tiny JSON formatter!

0.1.0
latest
Source
npm
Version published
Weekly downloads
20
-23.08%
Maintainers
1
Weekly downloads
 
Created
Source

json-format-tool

npm module Build Status

Introduction

Okay, this is a tiny cli-tool for format JSON.

Usage

First install

npm i -g json-format-tool

And if we have a not pretty JSON file like this one.

  {
  "foo": "foo",
   "bar": { "x": "我", "z": 234, "y": 345 },
    "baz": [3, 2, { "b": 234, "a": 123 }]
 }

We can format it.

json-format-tool demo.json

It will output

{
  "bar": {
    "x": "我",
    "y": 345,
    "z": 234
  },
  "baz": [
    3,
    2,
    {
      "a": 123,
      "b": 234
    }
  ],
  "foo": "foo"
}

It's much pretty now.

And if you want format some mutable JSON such as HTTP request, you can use the pipe operator.

curl -X GET http://127.0.0.1:3000/my-api | json-format-tool

Other options you can check inside the cli tool.

json-format-tool -h
Usage: json-format-tool [options] <json-file> OR <output-json> | json-format-tool

Options:
  -v, --version       output the version number
  -r, --replace       replace the file directly, only works in <json-file> mode
  -i, --indent <num>  indent for json (default: 2)
  --no-sort           not need sort keys
  -h, --help          output usage information

Internal

Sort JSON keys based on json-stable-stringify.

Keywords

json

FAQs

Package last updated on 03 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts