Where can I find a Perl module for converting a Perl data structure into a JavaScript one? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T04:41:59Z http://stackoverflow.com/feeds/question/134656 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/134656/where-can-i-find-a-perl-module-for-converting-a-perl-data-structure-into-a-javasc 4 Where can I find a Perl module for converting a Perl data structure into a JavaScript one? someguy 2008-09-25T17:18:31Z 2008-09-26T15:23:53Z <p>e.g. (Mason code):</p> <pre><code> 16 % # convert our @cti data structure into a javascript one 17 var cti = [ 18 % foreach my $cti_category (@cti) { 19 { 20 label: "&lt;% $cti_category-&gt;{'label'} %&gt;", 21 value: "&lt;% $cti_category-&gt;{'value'} %&gt;", 22 children: [ 23 % foreach my $cti_type (@{$cti_category-&gt;{'children'}}) { 24 { 25 label: "&lt;% $cti_type-&gt;{'label'} %&gt;", 26 value: "&lt;% $cti_type-&gt;{'value'} %&gt;", 27 }, 28 % } 29 ] 30 }, 31 % } 32 ]; </code></pre> http://stackoverflow.com/questions/134656/where-can-i-find-a-perl-module-for-converting-a-perl-data-structure-into-a-javasc/134672#134672 6 Answer by moritz for Where can I find a Perl module for converting a Perl data structure into a JavaScript one? moritz 2008-09-25T17:20:27Z 2008-09-25T17:20:27Z <p>Check out <a href="http://search.cpan.org/perldoc?JSON" rel="nofollow">JSON</a> or <a href="http://search.cpan.org/perldoc?JSON::XS" rel="nofollow">JSON::XS</a>.</p> <p>To elaborate a bit more, JSON is "JavaScript Object Notation", and the two modules above convert perl data structures into that format.</p> http://stackoverflow.com/questions/134656/where-can-i-find-a-perl-module-for-converting-a-perl-data-structure-into-a-javasc/134678#134678 0 Answer by Dan for Where can I find a Perl module for converting a Perl data structure into a JavaScript one? Dan 2008-09-25T17:20:56Z 2008-09-25T17:20:56Z <p><a href="http://search.cpan.org/~makamaka/JSON-2.12/lib/JSON.pm" rel="nofollow">JSON!</a></p> http://stackoverflow.com/questions/134656/where-can-i-find-a-perl-module-for-converting-a-perl-data-structure-into-a-javasc/134682#134682 0 Answer by Kyle Burton for Where can I find a Perl module for converting a Perl data structure into a JavaScript one? Kyle Burton 2008-09-25T17:21:43Z 2008-09-25T17:21:43Z <p>The <a href="http://search.cpan.org/~makamaka/JSON-2.12/lib/JSON.pm" rel="nofollow">JSON</a> module will convert data structures - it's basically a to/from JSON serializer. </p> http://stackoverflow.com/questions/134656/where-can-i-find-a-perl-module-for-converting-a-perl-data-structure-into-a-javasc/135182#135182 12 Answer by Penfold for Where can I find a Perl module for converting a Perl data structure into a JavaScript one? Penfold 2008-09-25T18:48:05Z 2008-09-25T18:48:05Z <p>JSON stands for JavaScript Object Notation, which is the format you're looking for.</p> <p>Unfortunately, none of the modules you're looking for are in the Perl core, but they are available on CPAN, as a quick <a href="http://search.cpan.org/search?query=JSON&amp;mode=all" rel="nofollow">search</a> will reveal.</p> <p>I'd actually recommend installing <a href="http://search.cpan.org/author/RBERJON/JSON-Any-1.17/lib/JSON/Any.pm" rel="nofollow">JSON::Any</a> as a wrapper, as well as <a href="http://search.cpan.org/author/MLEHMANN/JSON-XS-2.2222/XS.pm" rel="nofollow">JSON::XS</a> (if you have a C compiler) or one of <a href="http://search.cpan.org/author/MAKAMAKA/JSON-2.12/lib/JSON.pm" rel="nofollow">JSON</a> and <a href="http://search.cpan.org/~audreyt/YAML-Syck-1.05/lib/JSON/Syck.pm" rel="nofollow">JSON::Syck</a> if you don't. JSON::Any provides an <a href="http://en.wikipedia.org/wiki/Interface_pattern" rel="nofollow">interface class</a> on top of several other JSON modules (you can choose, or let it pick from what's installed) that's independent of which module you wind up using. That way, if your code should need to be ported elsewhere, and (say) the target machine can install JSON::XS when you can't, you get a performance boost without any extra code.</p> <pre><code>use JSON::Any; my $j = JSON::Any-&gt;new; $json = $j-&gt;objToJson($perl_data); </code></pre> <p>Like so.</p>