Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/devsnek/jsont

Json't JSON Library
https://github.com/devsnek/jsont

elixir erlang json parser

Last synced: 3 months ago
JSON representation

Json't JSON Library

Awesome Lists containing this project

README

        

# 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.

```elixir
{:ok, bin} = Jsont.encode("Hello, world!")
```

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

[`serde_json`]: https://github.com/serde-rs/json
[V8]: https://v8.dev/