代码拉取完成,页面将自动刷新
* Function eXecution
Command-line JSON processing tool
$ npm install -g fx
Or via Homebrew
$ brew install fx
Or download standalone binary from releases page.
Start interactive mode without passing any arguments.
$ curl ... | fx
Or by passing filename as first argument.
$ fx data.json
Pipe into fx
any JSON and anonymous function for reducing it.
$ curl ... | fx 'json => json.message'
Or same as above but short.
$ curl ... | fx this.message
$ curl ... | fx .message
Pass any numbers of arguments as code.
$ curl ... | fx 'json => json.message' 'json => json.filter(x => x.startsWith("a"))'
Access all lodash (or ramda, etc) methods by using .fxrc file.
$ curl ... | fx '_.groupBy("commit.committer.name")' '_.mapValues(_.size)'
Update JSON using spread operator.
$ echo '{"count": 0}' | fx '{...this, count: 1}'
{
"count": 1
}
Pretty print JSON with dot.
$ curl ... | fx .
See full documentation.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。