This library will encode/decode common serialization formats. The first two formats being added are JSON and CSV. Other formats such as XML may be added later. I was surprised no such library already exists (as far as I could tell) as I plan on using JSON and CSV in one of my other addons so thought it'd be useful to put this in its own library.
The JSON functions are a modified version of a publicly available, MIT licensed Lua JSON library (http://www.chipmunkav.com/downloads/Json.lua).
CSV support was introduced with v1.0.
- 1 comment
- 1 comment
Facts
- Date created
- Jun 05, 2012
- Categories
- Last update
- Mar 26, 2013
- Development stage
- Release
- Language
- enUS
- License
- MIT License
- Curse link
- LibParse
- Downloads
- 555
- Recent files
Authors
Relationships
- Embedded library
- LibStub
- Reply
- #1
Morsker Jul 20, 2012 at 15:38 UTC - 0 likesI was also surprised not to see JSON libraries; I ended up using this one when I was trying to export our gbank to a spreadsheet:
http://json.luaforge.net/
... or here for just the code.
I don't know how it compares to the library you found, but I thought it was worth mentioning.