codegear / json-formatter
Command-line tool to pretty-print JSON string for human readability
1.0.2
2018-07-29 00:00 UTC
Requires
- php: >=7.0.0
This package is auto-updated.
Last update: 2025-03-29 00:42:59 UTC
README
Command-line tool to pretty-print JSON string for human readability by PHP.
https://whitephp.net/2018/07/31/jf-cli-json-formatter.html
Requirements
PHP needs to be a minimum version of PHP 7.0.0.
Installation
Globally by using Composer:
$ composer global require codegear/json-formatter
Usage
In Command-Line
Format file data.json
and output to screen:
$ jf data.json
Format file data.json
and save to another file data_formatted.json
:
$ jf data.json > data_formatted.json
In VIM
Format current file:
:%!jf %
or add a keymap in vimrc
:
nnoremap <Leader>jf :%!jf %<CR>