Kurrent.Client
0.1.0-preview.1
This is a prerelease version of Kurrent.Client.
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Kurrent.Client --version 0.1.0-preview.1
NuGet\Install-Package Kurrent.Client -Version 0.1.0-preview.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Kurrent.Client" Version="0.1.0-preview.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Kurrent.Client" Version="0.1.0-preview.1" />
<PackageReference Include="Kurrent.Client" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Kurrent.Client --version 0.1.0-preview.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Kurrent.Client, 0.1.0-preview.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Kurrent.Client@0.1.0-preview.1
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Kurrent.Client&version=0.1.0-preview.1&prerelease
#tool nuget:?package=Kurrent.Client&version=0.1.0-preview.1&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Kurrent.Client
The official .NET client for KurrentDB — a cloud-native event streaming database.
Installation
dotnet add package Kurrent.Client
Supported Frameworks
- .NET 10.0
Quick Start
using Kurrent.Client;
var client = new KurrentClient("kurrentdb://localhost:2113");
// Append events to a stream
await client.Streams.AppendAsync("orders-123", [
new MessageData("OrderPlaced", orderData)
]);
// Read events from a stream
await foreach (var message in client.Streams.ReadAsync("orders-123")) {
Console.WriteLine($"{message.EventType}: {message.Data}");
}
Connection Strings
kurrentdb://localhost:2113
kurrentdb://admin:changeit@localhost:2113
kurrentdb+discover://node1:2113,node2:2113,node3:2113
Features
- Event Streams — append, read, subscribe, and manage streams
- Schema Registry — type-safe serialization with automatic schema management
- Filter Expressions — server-side SQL filtering for subscriptions and reads
- Serialization — built-in JSON and Protobuf serializers with auto-registration
- OpenTelemetry — distributed tracing and metrics out of the box
- Dependency Injection — first-class
IServiceCollectionintegration - AOT Compatible — source generators for zero-reflection operation
- Result Pattern — type-safe error handling without exceptions
Links
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Google.Api.CommonProtos (>= 2.17.0)
- Google.Protobuf (>= 3.35.0)
- Grpc.Net.ClientFactory (>= 2.80.0)
- Grpc.StatusProto (>= 2.80.0)
- Kurrent.Schema.Catalogs (>= 0.1.0-preview.1)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 10.0.8)
- Microsoft.Extensions.Configuration.Json (>= 10.0.8)
- Microsoft.Extensions.Http.Resilience (>= 10.6.0)
- Microsoft.Extensions.Logging (>= 10.0.8)
- Microsoft.Extensions.Telemetry.Abstractions (>= 10.7.0)
- NJsonSchema (>= 11.6.1)
- NodaTime.Serialization.SystemTextJson (>= 1.4.0)
- Polly.Core (>= 8.6.6)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Kurrent.Client:
| Package | Downloads |
|---|---|
|
Kurrent.Processors
An event processing framework for the Kurrent Platform. Build streaming processors with automatic checkpointing and partitioning. |
|
|
Kurrent.Streaming
An event processing framework for the Kurrent Platform. Build streaming processors with automatic checkpointing and partitioning. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0-preview.42 | 69 | 4/30/2026 |
| 1.0.0-preview.33 | 80 | 4/16/2026 |
| 1.0.0-preview.32 | 67 | 4/16/2026 |
| 0.1.0-preview.1 | 64 | 6/18/2026 |