wok annotate perl-json-pp/description.txt @ rev 25420

Update some web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 08 07:39:58 2022 +0000 (22 months ago)
parents
children
rev   line source
Hans-G?nter@24231 1 JSON::PP is a pure perl JSON decoder and encoder, and (almost) compatible
Hans-G?nter@24231 2 to much faster JSON::XS written by Marc Lehmann in C.
Hans-G?nter@24231 3 JSON::PP works as a fallback module when you use JSON module without
Hans-G?nter@24231 4 having installed JSON::XS.
Hans-G?nter@24231 5
Hans-G?nter@24231 6 Because of this fallback feature of JSON.pm, JSON::PP tries not to be
Hans-G?nter@24231 7 more JavaScript-friendly than JSON::XS (i.e. not to escape extra
Hans-G?nter@24231 8 characters such as U+2028 and U+2029, etc), in order for you not to lose
Hans-G?nter@24231 9 such JavaScript-friendliness silently when you use JSON.pm and install
Hans-G?nter@24231 10 JSON::XS for speed or by accident.
Hans-G?nter@24231 11 If you need JavaScript-friendly RFC7159-compliant pure perl module,
Hans-G?nter@24231 12 try JSON::Tiny, which is derived from Mojolicious web framework and is
Hans-G?nter@24231 13 also smaller and faster than JSON::PP.
Hans-G?nter@24231 14
Hans-G?nter@24231 15 JSON::PP has been in the Perl core since Perl 5.14, mainly for CPAN
Hans-G?nter@24231 16 toolchain modules to parse META.json.