lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


tnetstrings.lua
A library implementing tagged netstrings in Lua.

About Tagged Netstrings
====================

TNetStrings stand for a "tagged netstrings" and are a modification of
Dan Bernstein's netstrings specification to allow for the same data
structures as JSON but in a format that meets these requirements:

* Trivial to parse in every language without making errors.
* Resistant to buffer overflows and other problems.
* Fast and low resource intensive.
* Makes no assumptions about string contents and can store binary data
without escaping or encoding them.
* Backward compatible with original netstrings.
* Transport agnostic, so it works with streams, messages, files,
anything that's 8-bit clean.

http://tnetstrings.org/


My implementation is available on github
https://github.com/jsimmons/tnetstrings.lua and