Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kaeza/kminser
Data serialization with minification for Lua.
https://github.com/kaeza/kminser
lua serialization
Last synced: 28 days ago
JSON representation
Data serialization with minification for Lua.
- Host: GitHub
- URL: https://github.com/kaeza/kminser
- Owner: kaeza
- License: mit
- Created: 2017-08-23T16:03:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-06T02:59:33.000Z (about 5 years ago)
- Last Synced: 2024-11-08T10:54:31.512Z (2 months ago)
- Topics: lua, serialization
- Language: Lua
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# KMinSer – Data serialization with minification.
This is a [Lua][lua] module that contains functions to serialize values to
strings, and deserialize these strings back to values. It is able to serialize
strings, numbers, booleans, nil values, and tables.The serialized output is a chunk of Lua code yielding comparable values.
The module does its best to generate the most compact code possible.
See the module file for details.
## License
This module is released under a MIT-like license.
See `LICENSE.md` for details.## Requirements
* [Lua][lua] 5.1 or above.
## Links
* Download development version: [`.zip`][devzip], [`.tar.gz`][devtgz].
* [Repository][repo] at Github.[lua]: http://lua.org
[devzip]: https://github.com/kaeza/kminser/archive/master.zip
[devtgz]: https://github.com/kaeza/kminser/archive/master.tar.gz
[repo]: https://github.com/kaeza/lua-minser