Documentation

.NET Node.js

Description

EventStoreDB is an event sourcing database that stores data in streams of immutable events.

Examples

Dependency:
dotnet add package Testcontainers.EventStoreDb
Usage:
var eventStoreDbContainer = new EventStoreDbBuilder()
  .WithImage("eventstore/eventstore:22.10.1-buster-slim")
  .Build();
await eventStoreDbContainer.StartAsync();
Dependency:
npm install @testcontainers/eventstoredb --save-dev
Usage:
const container = await new EventStoreDBContainer("eventstore/eventstore:24.10").start();