wok view perl-json/description.txt @ rev 25074

Add python-ipaddress
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 13 19:39:39 2022 +0000 (23 months ago)
parents
children
line source
1 This module is a thin wrapper for JSON::XS-compatible modules with
2 a few additional features.
3 All the backend modules convert a Perl data structure to a JSON text
4 and vice versa.
5 This module uses JSON::XS by default, and when JSON::XS is not available,
6 falls back on JSON::PP, which is in the Perl core since 5.14.
7 If JSON::PP is not available either, this module then falls back on
8 JSON::backportPP (which is actually JSON::PP in a different .pm file)
9 bundled in the same distribution as this module.
10 You can also explicitly specify to use Cpanel::JSON::XS, a fork of
11 JSON::XS by Reini Urban.
13 All these backend modules have slight incompatibilities between them,
14 including extra features that other modules don't support, but as long as
15 you use only common features (most important ones are described below),
16 migration from backend to backend should be reasonably easy.
17 For details, see each backend module you use.