[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Which JSON parser with 5.3?
- From: Marc Balmer <marc@...>
- Date: Sat, 15 Apr 2017 09:00:05 +0200
Am 14.04.17 um 22:25 schrieb Dirk Laurie:
> I used to like lua-cjson but it does not sit well with Lua 5.3.
> Whenever a string could represent a number, it converts
> it to a float, so that every integer prints with a .0 at the end.
>
> Any recommendations for a module that works under Lua 5.3
> and does not have this annoying feature?
>
We use our own for all JSON needs. It is reasonably fast and is well
maintained: gtihub.com/arcapos/luajson
- mb