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, but hopefully it will eventually support formats other than XML. Any suggestions?
Note: The XML<->JSON conversion relies on XML::XML2JSON. The XML file will be slurped and parsed all at once.
Note: this is only version 0.01, eh?
SEE ALSO
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, Scott Lanning. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.