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

NAME

PerlIO::via::json - PerlIO layer to convert to and from JSON

SYNOPSIS

  use PerlIO::via::json;
  open my $fh, '<:via(json)', 'file.xml' or die "...: $!";
  my $json = <$fh>;

  open my $fh, '>:via(json)', 'file.xml' or die "...: $!";
  print $fh '{"key":"value"}';

DESCRIPTION

This module implements a PerlIO layer that converts a file to or from JSON format.

In fact, it currently only supports converting between XML and JSON. Any suggestions?

Note: The XML<->JSON conversion relies on XML::XML2JSON. The XML file will be slurped and parsed all at once.

SEE ALSO

XML::XML2JSON

AUTHORS

Scott Lanning <slanning@cpan.org>.

Ideas and/or code taken freely from other PerlIO::via modules, particularly those of Elizabeth Mattijsen (esp. PerlIO::via::QuotedPrint).

LICENSE

Copyright 2009,2017, Scott Lanning. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.