A lightweight, opinionated CQRS and event sourcing framework targeting serverless architectures.
Command Query Responsibility Segregation (CQRS) is a pattern in Domain Driven Design that uses separate write and read models for application objects and interconnects them with events. Event sourcing uses the generated events as the source of truth for the state of the application.
Together these provide a number of benefits: - Removes coupling between tests and application logic allowing limitless refactoring. - Greater isolation of the aggregate. - Ability to create views that more accurately model our business environment. - A horizontally scalable read path.
Things that could be quite helpful: - User guide along with an introduction to CQRS and event sourcing. - Demo application using the warp http server.
v0.2.1
v0.2.0
Moved to async/await for better tool support.
v0.1.3
Aggregates now consume events on apply
.
v0.1.2
Require Send + Sync
for queries.
v0.1.1
Require Send + Sync
for support of multi-threaded applications.
v0.1.0
Corrected to move all command and event logic into the aggregate.