Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rawkode/eidetic-elixir
- Owner: rawkode
- License: mit
- Created: 2017-04-01T09:08:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-13T08:37:17.000Z (about 7 years ago)
- Last Synced: 2024-05-01T21:44:45.889Z (6 months ago)
- Language: Elixir
- Size: 49.8 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-elixir-cqrs - Eidetic - An event sourcing library for Elixir. (Libraries)
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
```