Skip to content

Latest commit

History

23 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

pj

Makes json all pretty-like.

as a conscript app

install

Installation requires conscript

cs softprops/pj

usage

Formatting piped data with curl (discarding stderr), use empty -- flag

curl 'http://api.tea.io/time' 2>/dev/null | pj --
{
"tea_time": true
}

Formatting json from file and writing to another.

pj -f path/to/in.json -o path/to/out.json

Formatting inline json

pj -j '{"oh":"la,la","datas":[1,2,3,4],"objects":{"waka":"waka"}}'

Getting help

pj -h

as a library

install

Install using ls

ls-install pj

Install by hand

libraryDependencies += "me.lessis" %% "pj" % "0.1.0"

usage

val raw = """{"oh":"la,la","datas":[1,2,3,4],"objects":{"waka":"waka"}}"""
println(pj.Printer(raw))
{
"oh" : "la,la",
"datas" : [ 1, 2, 3, 4 ],
"objects" : {
"waka" : "waka"
}
}

Doug Tangren (softprops) 2012

About

a pajama party for your json strings and streamers

Resources

Stars

5 stars

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages