/saj

Simple API for JSON

Primary LanguageElixirMIT LicenseMIT

Saj

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

Documentation

Installation

The package can be installed as:

  1. Add saj to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:saj, "~> 0.1.0"}]
end
```
  1. Ensure saj is started before your application:
```elixir
def application do
  [applications: [:saj]]
end
```