29 lines
685 B
Markdown
29 lines
685 B
Markdown
|
# jasper
|
||
|
|
||
|
[](https://hex.pm/packages/jasper)
|
||
|
[](https://hexdocs.pm/jasper/)
|
||
|
|
||
|
```sh
|
||
|
gleam add jasper
|
||
|
```
|
||
|
```gleam
|
||
|
import gleam/io
|
||
|
import jasper.{parse_json, query_json, String, Root, Key, Index}
|
||
|
|
||
|
pub fn main() {
|
||
|
let assert Ok(json) = parse_json("{ \"foo\": [1, true, \"hi\"] }")
|
||
|
let assert Ok(String(str)) = query_json(json, Root |> Key("foo") |> Index(2))
|
||
|
io.println(str)
|
||
|
}
|
||
|
```
|
||
|
|
||
|
Further documentation can be found at <https://hexdocs.pm/jasper>.
|
||
|
|
||
|
## Development
|
||
|
|
||
|
```sh
|
||
|
gleam run # Run the project
|
||
|
gleam test # Run the tests
|
||
|
gleam shell # Run an Erlang shell
|
||
|
```
|