Start
docker compose build
docker compose up
Being this project has such a small domain context there are only a couple source files which contain real logic. Other files are helpers, extensions, or setup.
- Domain Command Handler
- Domain Todo Aggregate
- Read Model Projector
- Web Request Handler
- Domain Handler Tests
- Event Handler Tests
Web frontend from TodoMVC-React
EventSourcing is a process of representing domain objects (Orders, Invoices, Accounts, etc) as a series of separate events.
Your application ends up being 1 long audit log which records every state-changing event that occurs. The advantage of this approach is other processes can read this event log and generate models that contain only the information the process cares about. There is also additional information available that other services perhaps don't record themselves.
Imagine a shoppign cart which fills with items to buy. The warehouse only cares about the final order of the stuff the customer actually agreed to purchase -
but the marketing team might care more about the items the customer removed from their cart without buying.
Using eventsourcing correctly you can generate models which contain both sets of information to satisfy both departments with only 1 set of data.
CQRS stands for Command and Query Responsibility Segregation
In a nut shell - commands are everything that want to change the application state. Queries are anything that want to read application state. There is no overlap
Commands do not return any data other than if they were Accepted or Rejected. Accepted meaning the change was saved and read models will be updated. Rejected meaning the command failed validation or was not valid to be run at this time. (One example would be trying to invoice a sales order which has already been invoiced)
{host}:2113
{host}:15672