json
JSON serialization. No require() needed.
json.parse(str)→ table — Parse JSON string to Lua tablejson.encode(table)→ string — Encode Lua table to JSON string
yaml
YAML serialization. No require() needed.
yaml.parse(str)→ table — Parse YAML string to Lua tableyaml.encode(table)→ string — Encode Lua table to YAML string
toml
TOML serialization. No require() needed.
toml.parse(str)→ table — Parse TOML string to Lua tabletoml.encode(table)→ string — Encode Lua table to TOML string