inspired by JsonStreamingParser
This is a simple, streaming parser for processing large JSON documents. Use it for parsing very large JSON documents to avoid loading the entire thing into memory
The package can be installed as:
- Add
saj
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:saj, "~> 0.1.0"}]
end
```
- Ensure
saj
is started before your application:
```elixir
def application do
[applications: [:saj]]
end
```