Event Sourcing and CQRS toolkit for NestJS with support for event store, command/query separation, and saga patterns
npm install nest-eventsource-kitbash
npm install nest-eventsource-kit
`
Quick Start
`typescript
import { EventSourcingModule } from 'nest-eventsource-kit';
@Module({
imports: [
EventSourcingModule.forRoot({
eventStore: InMemoryEventStore,
}),
],
})
export class AppModule {}
``