C4::Output::JSONStream - progressively build JSON data
my $json = new C4::Output::JSONStream;
$json->param( issues => [ 'yes!', 'please', 'no', { emphasis = 'NO' } ] ); $json->param( stuff => 'realia' );
print $json->output;
This module allows you to build JSON incrementally.