Event-native database, to power Event Sourced workflows for Microservices with Domain Driven Design.
async function handleEvents(id: string) {
const events = await getEvents(id);
events.reduce((prev, event) => {
return {
...prev,
// ... apply events
event,
};
}, {});
}Why SQL sometimes isn't enough.
Let's get up and running with build and testing scripts!
Fighting public enemy #1