JoStro-json icon

json

Exposes json.lua as a module using lovely

Last updated 3 weeks ago
Total downloads 429
Total rating 2 
Categories Libraries
Dependency string JoStro-json-0.1.3
Dependants 1 other package depends on this package

This mod requires the following mods to function

Thunderstore-lovely-0.4.0 icon
Thunderstore-lovely

Lovely is a runtime lua injector for LÖVE 2d

Preferred version: 0.4.0

README

This is a Thunderstore package mirror of rxi's json.lua with an added lovely patch

The provided lovely patch adds it under the module name "json". A modified extract from the project's original readme follows

...

A lightweight JSON library for Lua

Usage

json = require "json"

The library provides the following functions:

json.encode(value)

Returns a string representing value encoded in JSON.

json.encode({ 1, 2, 3, { x = 10 } }) -- Returns '[1,2,3,{"x":10}]'

json.decode(str)

Returns a value representing the decoded JSON string.

json.decode('[1,2,3,{"x":10}]') -- Returns { 1, 2, 3, { x = 10 } }

Notes

  • Trying to encode values which are unrepresentable in JSON will never result in type conversion or other magic: sparse arrays, tables with mixed key types or invalid numbers (NaN, -inf, inf) will raise an error
  • null values contained within an array or object are converted to nil and are therefore lost upon decoding
  • Pretty encoding is not supported, json.encode() only encodes to a compact format

License

This library is free software; you can redistribute it and/or modify it under the terms of the MIT license. See LICENSE for details.