https://github.com/parkghost/jsonfmt
A dead simple json formatter
https://github.com/parkghost/jsonfmt
Last synced: 6 months ago
JSON representation
A dead simple json formatter
- Host: GitHub
- URL: https://github.com/parkghost/jsonfmt
- Owner: parkghost
- License: mit
- Created: 2015-02-19T18:23:35.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-24T09:41:48.000Z (almost 11 years ago)
- Last Synced: 2025-04-06T09:06:18.844Z (9 months ago)
- Language: Go
- Size: 121 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
jsonfmt
=======
*A dead simple json formatter*
### Usage
```text
Usage of jsonfmt:
-c=false: Compact the json data
-i="stdin": The input file
-o="stdout": The output file
```
### Installation
```
go get github.com/parkghost/jsonfmt
```
### Example
```text
echo '{ "foo": "lorem", "bar": "ipsum" }' | jsonfmt
{
"bar": "ipsum",
"foo": "lorem"
}
```
License
---------------------
This project is licensed under the MIT license