Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 371 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 371 Bytes

Json't

Json't is a JSON encoder/decoder for Elixir. Building on the incredible work of serde_json and V8, Json't is able to achieve correct, lightning fast results.

{:ok, bin} = Jsont.encode("Hello, world!")
{:ok, term} = Jsont.decode(~s("Hello, world!"))