url2json
A small command line tool to convert url params into json.
Installation
npm install -g url2json
Usage
$ url2json "foo=bar&bar[]=fizz&bar[]=buzz"
{
"foo": "bar",
"bar": [
"fizz",
"buzz"
]
}
License
MIT
A small command line tool to convert url params into json.
npm install -g url2json
$ url2json "foo=bar&bar[]=fizz&bar[]=buzz"
{
"foo": "bar",
"bar": [
"fizz",
"buzz"
]
}
MIT
npm i url2json
1
1.0.1
MIT