Skip to content

Commit

Permalink
Merge pull request #36 from Mehonoshin/readme-installation-section
Browse files Browse the repository at this point in the history
Add installation section to readme
  • Loading branch information
guedes committed Aug 23, 2016
2 parents f230289 + 0fca46b commit ca913ee
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Expand Up @@ -3,6 +3,18 @@ JSON for Elixir

[Elixir](http://elixir-lang.org) implementation (with an Erlang parser) of the [JSON](http://www.json.org) specification to [RFC 4627](http://www.ietf.org/rfc/rfc4627.txt). ExJSON generate JSON string from keyword lists and maps and can parse into those structures also.

## Installation

Add HTTPoison to your `mix.exs` dependencies:

```elixir
def deps do
[{:exjson, "~> 0.6.0"}]
end
```

and run `$ mix deps.get`.

## Generating a JSON string from a keyword list

```elixir
Expand Down

0 comments on commit ca913ee

Please sign in to comment.