Go to file
Marcel Otto 913ae1be6c json_ld: fix compact-0014 and compact-0052
by fixing yet another spec bug
2017-03-26 03:02:26 +02:00
config json_ld: mix new json_ld --module JSON.LD 2016-12-08 00:27:27 +01:00
lib json_ld: fix compact-0014 and compact-0052 2017-03-26 03:02:26 +02:00
test json_ld: JSON-LD compaction test suite and various compaction fixes 2017-03-25 22:16:59 +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 json_ld: failing of expand-0062 and expand-0029 is caused by a bug in URI.merge and should work in Elixir 1.5 2017-03-25 22:00:47 +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