Go to file
2017-03-24 23:13:05 +01:00
config json_ld: mix new json_ld --module JSON.LD 2016-12-08 00:27:27 +01:00
lib json_ld: JSON-LD API conform options 2017-03-22 00:35:05 +01:00
test json_ld: helpers for the JSON-LD test suite 2017-03-24 23:13:05 +01:00
.gitignore json_ld: mix new json_ld --module JSON.LD 2016-12-08 00:27:27 +01:00
LICENSE.md json_ld: add license 2016-12-08 00:27:54 +01:00
mix.exs upgrade dependencies 2017-02-12 18:55:03 +01:00
README.md json_ld: initial JSON-LD context processing and expansion implementation 2017-02-10 15:16:51 +01:00

JSON.LD

An implementation of the JSON-LD standard.

Installation

The package can be installed by adding json_ld to your list of dependencies in mix.exs:

```elixir
def deps do
  [
    {:json_ld, "~> 0.1.0"}
  ]
end
```

Then, update your dependencies:

$ mix deps.get

Usage