0.0.1 • Published 12 years ago
makejson v0.0.1
makejson
Make JSON from the command line
Installation
[sudo] npm install -g makejsonUsage
$ makejson string foo bar baz"foo bar baz"$ makejson array foo bar baz[
"foo",
"bar",
"baz"
]$ makejson object foo=foo bar=bar baz=baz{
"foo": "foo",
"bar": "bar",
"baz": "baz"
}$ makejson object foo=false bar=true baz=null string="something here" a.b.c.d=100 a.b.c.e=something{
"foo": false,
"bar": true,
"baz": null,
"string": "something here",
"a": {
"b": {
"c": {
"d": 100,
"e": "something"
}
}
}
}License
MIT