0.17.0 • Published 3 years ago

imes v0.17.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

A Typescript Event Sourcing Framework

With the event sourcing model, events are the source of truth. They contain facts - data related to events that have happened. Application state is derived from events by the way of projections. Projections are basically a fold over state and an event: (Event, State) => State. Projections are pure data transformations and cannot interact with any external systems. For example if an exchange rate is needed to derive a price it must be included in the event data not fetched from an api. Logically this makes sense as rates change over time and the projection is interested in the exchange rate at the time of the event, not the current exchange rate.

Concurrency Conflicts

It should be noted that there is the potential for concurrency related conflicts. In the future a form of optimistic currency control could be implemented. However, for the time being its recommended this library be used for small projects where the risk of conflicts is low.

0.17.0

3 years ago

0.16.0

3 years ago

0.15.0

3 years ago

0.14.0

4 years ago

0.13.0

4 years ago

0.12.0

4 years ago

0.11.0

4 years ago

0.10.0

4 years ago

0.9.0

4 years ago

0.8.0

4 years ago

0.7.1

4 years ago

0.7.0

4 years ago

0.6.1

4 years ago

0.6.0

4 years ago

0.5.0

4 years ago

0.4.0

4 years ago

0.3.0

4 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago