Event sourcing (notes)
Event Sourcing turns events into the source of truth.
A bank account is the classic example. Instead of just storing the balance:
// Traditional approach (current state)
{
"accountId": "123",
"balance": 1000
}
// Event Sourcing (history of chang...
tigerabrodi.blog4 min read