Eidetic (EventSourcing for Elixir)

Note: The canonical repository is hosted here, on GitLab.com.

Hex.pmHex.pmHex.pmbuild statuscode coverage

WARNING: This is under active development. We do use this in production. API is unlikely to change, but not impossible. 1.0 expected soon

Initial implementation of an event sourced model that can be used in Elixir.

Installing

{:eidetic, "~> 0.5.0"}

Tests

make test

Creating Your First EventSourced Model

Please check out the examples

defmodule MyModel do
  use Eidetic.Aggregate, fields: [forename: nil, surname: nil]
end