diff options
author | Louis Pilfold <louis@lpil.uk> | 2021-12-31 16:13:34 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2021-12-31 16:13:34 +0000 |
commit | 5cb1af7477a60e9659f88ce3b5bf5255dc9fe198 (patch) | |
tree | 0e4522473db0299f3b22dd93ebd8ffb20a463fa9 /README.md | |
parent | 36d98494539a809012cbe575f7169e918a326cd0 (diff) | |
download | gleam_json-5cb1af7477a60e9659f88ce3b5bf5255dc9fe198.tar.gz gleam_json-5cb1af7477a60e9659f88ce3b5bf5255dc9fe198.zip |
README
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -1,6 +1,6 @@ -# gleam_json +# json 🐑 -A Gleam library for encoding decoding JSON. +Work with JSON in Gleam! ### Encoding @@ -42,10 +42,8 @@ assert Ok(_) = dynamic.atom(nope) ## Installation -This package can be installed by adding `gleam_json` to your `rebar.config` dependencies: +Add this package to your Gleam project. -```erlang -{deps, [ - gleam_json -]}. +```shell +gleam add gleam_json ``` |