README.md
# simplejson
[](https://hex.pm/packages/simplejson)
[](https://hexdocs.pm/simplejson/)
Basic JSON library for Gleam. To be used for simple conversion from string to a basic JSON structure and to then output that as a string again.
## Installation
```sh
gleam add simplejson@1
```
```gleam
import simplejson
pub fn main() {
let json = simplejson.parse("[1,2,3]")
echo simplejson.stringify(json)
}
```
Further documentation can be found at <https://hexdocs.pm/simplejson>.
## Targets
As this uses only stdlib and regexp this should fully support both JavaScript and Erlang