App-jl
view release on metacpan or search on metacpan
lib/App/jl.pm view on Meta::CPAN
require Pod::Usage;
Pod::Usage::pod2usage(-exitval => $exitval);
}
1;
__END__
=encoding UTF-8
=head1 NAME
App::jl - Show the "JSON in JSON" Log Nicely
=head1 SYNOPSIS
See L<jl> for CLI to view logs.
use App::jl;
App::jl->new(@ARGV)->run;
=head1 DESCRIPTION
App::jl is recursive JSON in JSON decoder. It makes JSON log nice.
For example,
$ echo '{"foo":"{\"bar\":\"{\\\"baz\\\":123}\"}"}' | jl
{
"foo" : {
"bar" : {
"baz" : 123
}
}
}
=head1 METHODS
=head2 new
constructor
=head2 opt
getter of optional values
=head2 run
The main routine
=head1 REPOSITORY
=begin html
<a href="https://github.com/bayashi/App-jl/blob/main/lib/App/jl.pm"><img src="https://img.shields.io/badge/Version-0.20-green?style=flat"></a> <a href="https://github.com/bayashi/App-jl/blob/main/LICENSE"><img src="https://img.shields.io/badge/LICENS...
=end html
App::jl is hosted on github: L<http://github.com/bayashi/App-jl>
I appreciate any feedback :D
=head1 AUTHOR
Dai Okabayashi E<lt>bayashi@cpan.orgE<gt>
=head1 SEE ALSO
L<jl>
=head1 LICENSE
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself. See L<perlartistic>.
=cut
( run in 1.627 second using v1.01-cache-2.11-cpan-788537b7465 )