Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rawkode/eidetic-elixir

An event sourcing library for Elixir
https://github.com/rawkode/eidetic-elixir

Last synced: 3 months ago
JSON representation

An event sourcing library for Elixir

Awesome Lists containing this project

README

        

# Eidetic (EventSourcing for Elixir)
[![Build Status](https://travis-ci.org/GT8Online/eidetic-elixir.svg?branch=master)](https://travis-ci.org/GT8Online/eidetic-elixir)

*WARNING:* This is under active development. Do *NOT* use

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

## Creating Your First EventSourced Model

Please check out the [examples](/examples)

```elixir
defmodule MyModel do
use Eidetic.Model, fields: [forename: nil, surname: nil]
end
```