
A lightweight JSON library for Lua
expected '}' or ',' at line 203 col 30The json.lua file should be dropped into an existing project and required by it:
json = require "json"
The library provides the following functions:
Returns a string representing value encoded in JSON.
json.encode({ 1, 2, 3, { x = 10 } }) -- Returns '[1,2,3,{"x":10}]'
Returns a value representing the decoded JSON string.
json.decode('[1,2,3,{"x":10}]') -- Returns { 1, 2, 3, { x = 10 } }
null values contained within an array or object are converted to nil and
are therefore lost upon decodingjson.encode() only encodes to a compact
formatThis library is free software; you can redistribute it and/or modify it under the terms of the MIT license. See LICENSE for details.
49 commits
3 commits
Lua
97.6%
Shell
2.4%

A lightweight JSON library for Lua
expected '}' or ',' at line 203 col 30The json.lua file should be dropped into an existing project and required by it:
json = require "json"
The library provides the following functions:
Returns a string representing value encoded in JSON.
json.encode({ 1, 2, 3, { x = 10 } }) -- Returns '[1,2,3,{"x":10}]'
Returns a value representing the decoded JSON string.
json.decode('[1,2,3,{"x":10}]') -- Returns { 1, 2, 3, { x = 10 } }
null values contained within an array or object are converted to nil and
are therefore lost upon decodingjson.encode() only encodes to a compact
formatThis library is free software; you can redistribute it and/or modify it under the terms of the MIT license. See LICENSE for details.
49 commits
3 commits
Lua
97.6%
Shell
2.4%