The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

json-to - Convert JSON data to other formats

VERSION

version 1.000

SYNOPSIS

    $ echo "{\"a\":4}"| json-to Perl
    {a => 4}

    $ echo "{\"a\":4}"| json-to YAML
    ---
    a: 4

DESCRIPTION

json-to is a command line tool to convert JSON data into other formats.

Built-in formats:

  • perl: Perl 5 code

  • YAML: YAML.

EXTENDING

json-to is written in Perl. Formatters are plugins in the App::JSON::to:: namespace. See App::JSON::to::perl and App::JSON::to::yaml for examples.

AUTHOR

Olivier MENGUÉ, mailto:dolmen@cpan.org.

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Olivier MENGUÉ.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.