0.0.5 • Published 12 years ago
jsonfmt v0.0.5
jsonfmt - JSON FORMAT
Installation
npm install jsonfmt -gExample 1 - output
~/Desktop/file.json contents
[{"foo":"bar"},{"foo":"bar"},{"foo":"bar"},{"foo":"bar"}]Run command
jsonfmt -f ~/Desktop/file.jsonExample output
[
{
"foo": "bar"
},
{
"foo": "bar"
},
{
"foo": "bar"
},
{
"foo": "bar"
}
]Example 2 - output to file
jsonfmt -f ~/Desktop/file.json > ~/Desktop/fmt_file.json