Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/devsnek/jsont
- Owner: devsnek
- License: mit
- Created: 2024-02-04T07:13:06.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-03-23T02:40:17.000Z (10 months ago)
- Last Synced: 2024-05-01T16:15:57.123Z (9 months ago)
- Topics: elixir, erlang, json, parser
- Language: Rust
- Homepage:
- Size: 1.22 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/