wok diff perl-json-pp/description.txt @ rev 24240

updated perl-mime-types (2.17 -> 2.22)
author Hans-G?nter Theisgen
date Sun Jan 02 07:21:29 2022 +0100 (2022-01-02)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-json-pp/description.txt	Sun Jan 02 07:21:29 2022 +0100
     1.3 @@ -0,0 +1,16 @@
     1.4 +JSON::PP is a pure perl JSON decoder and encoder, and (almost) compatible
     1.5 +to much faster JSON::XS written by Marc Lehmann in C.
     1.6 +JSON::PP works as a fallback module when you use JSON module without
     1.7 +having installed JSON::XS.
     1.8 +
     1.9 +Because of this fallback feature of JSON.pm, JSON::PP tries not to be
    1.10 +more JavaScript-friendly than JSON::XS (i.e. not to escape extra
    1.11 +characters such as U+2028 and U+2029, etc), in order for you not to lose
    1.12 +such JavaScript-friendliness silently when you use JSON.pm and install
    1.13 +JSON::XS for speed or by accident.
    1.14 +If you need JavaScript-friendly RFC7159-compliant pure perl module,
    1.15 +try JSON::Tiny, which is derived from Mojolicious web framework and is
    1.16 +also smaller and faster than JSON::PP.
    1.17 +
    1.18 +JSON::PP has been in the Perl core since Perl 5.14, mainly for CPAN
    1.19 +toolchain modules to parse META.json.