NATS.Client.JetStream 2.0.0-alpha.2

Prefix Reserved
This is a prerelease version of NATS.Client.JetStream.
There is a newer version of this package available.
See the version list below for details.
dotnet add package NATS.Client.JetStream --version 2.0.0-alpha.2
                    
NuGet\Install-Package NATS.Client.JetStream -Version 2.0.0-alpha.2
                    
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="NATS.Client.JetStream" Version="2.0.0-alpha.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NATS.Client.JetStream" Version="2.0.0-alpha.2" />
                    
Directory.Packages.props
<PackageReference Include="NATS.Client.JetStream" />
                    
Project file
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 NATS.Client.JetStream --version 2.0.0-alpha.2
                    
#r "nuget: NATS.Client.JetStream, 2.0.0-alpha.2"
                    
#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 NATS.Client.JetStream@2.0.0-alpha.2
                    
#: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=NATS.Client.JetStream&version=2.0.0-alpha.2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=NATS.Client.JetStream&version=2.0.0-alpha.2&prerelease
                    
Install as a Cake Tool

NATS.NET V2

Preview

The NATS.NET V2 client is in preview and not recommended for production use. Codebase is still under heavy development and currently we only have implementations for core NATS features.

Please test and provide feedback by visiting our Slack channel.

NATS.NET V2 Goals

  • Only support Async I/O
  • Target latest .NET LTS Release (currently net6.0)

Packages

  • NATS.Client.Core: core NATS
  • NATS.Client.Hosting: extension to configure DI container
  • NATS.Client.JetStream: JetStream not yet implemented

Basic Usage

Download the latest nats-server for your platform and run it without any arguments. nats-server will listen on its default TCP port 4222.

Given that we have a plain class Bar, we can publish and subscribe to our nats-server sending and receiving Bar objects:

public record Bar
{
    public int Id { get; set; }
    public string Name { get; set; }
}

Subscribe to all bar related subjects:

await using var nats = new NatsConnection(options);

await using sub = await nats.SubscribeAsync<Bar>("bar.>");
await foreach (var msg in sub.Msgs.ReadAllAsync())
{
    Console.WriteLine($"Received {msg.Subject}: {msg.Data}\n");
}

Publish Bar objects to related bar subjects:

await using var nats = new NatsConnection();

for (int i = 0; i < 10; i++)
{
    Console.WriteLine($" Publishing {i}...");
    await nats.PublishAsync<Bar>($"bar.baz.{i}", new Bar { Id = i, Name = "Baz" });
}

You should also hook your logger to NatsConnection to make sure all is working as expected or to get help diagnosing any issues you might have:

var options = NatsOpts.Default with { LoggerFactory = new MinimumConsoleLoggerFactory(LogLevel.Error) };
await using var nats = new NatsConnection(options);

Contributing

  • Run dotnet format at root directory of project in order to clear warnings that can be auto-formatted

Attribution

This library is based on the excellent work in Cysharp/AlterNats

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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.

NuGet packages (12)

Showing the top 5 NuGet packages that depend on NATS.Client.JetStream:

Package Downloads
NATS.Client.KeyValueStore

JetStream Key/Value Store support for NATS.Client.

NATS.Client.ObjectStore

JetStream Object Store support for NATS.Client.

NATS.Net

NATS client for modern .NET

PhoenixToolkits.MessageQueue.Nats

Package Description

Savvyio.App

Provides a complete and convenient set of API additions for building a DDD, CQRS and Event Sourcing enabled .NET application using Microsoft Dependency Injection, Microsoft Entity Framework Core, Dapper, AWS SNS/SQS, Azure Queue Storage/Azure Event Grid and RabbitMQ Worker Queue/Publish-Subscribe.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.7.0-preview.5 254 9/2/2025
2.7.0-preview.4 334 8/21/2025
2.7.0-preview.3 148 8/1/2025
2.7.0-preview.2 561 7/21/2025
2.7.0-preview.1 391 7/18/2025
2.6.9 761 9/17/2025
2.6.8 31,558 9/2/2025
2.6.8-preview.1 167 8/28/2025
2.6.7 13,360 8/21/2025
2.6.6 25,693 8/1/2025
2.6.5 25,152 7/21/2025
2.6.4 22,892 7/16/2025
2.6.3 30,678 6/30/2025
2.6.2-preview.1 505 5/24/2025
2.6.1 195,697 5/13/2025
2.6.0 74,744 4/25/2025
2.6.0-preview.5 179 4/24/2025
2.6.0-preview.4 274 4/9/2025
2.6.0-preview.3 632 3/12/2025
2.6.0-preview.2 175 2/28/2025
2.6.0-preview.1 103 2/27/2025
2.5.16 29,320 4/16/2025
2.5.15 14,919 4/10/2025
2.5.14 1,173 4/9/2025
2.5.12 50,162 3/21/2025
2.5.11 56,930 3/12/2025
2.5.10 15,727 3/12/2025
2.5.10-preview.1 201 3/7/2025
2.5.9 51,507 2/24/2025
2.5.8 65,653 2/11/2025
2.5.8-preview.1 129 1/29/2025
2.5.7 50,634 1/27/2025
2.5.6 55,788 1/13/2025
2.5.5 323,792 12/10/2024 2.5.5 is deprecated because it has critical bugs.
2.5.4 114,217 11/13/2024
2.5.3 64,204 11/5/2024
2.5.2 98,807 10/22/2024
2.5.1 151,339 10/17/2024
2.5.0 35,922 10/9/2024
2.5.0-preview.2 113 10/8/2024
2.5.0-preview.1 189 10/1/2024
2.4.0 58,139 9/17/2024
2.4.0-preview.3 123 9/11/2024
2.4.0-preview.2 144 8/23/2024
2.4.0-preview.1 17,034 8/5/2024
2.3.3 264,558 8/2/2024
2.3.3-preview.4 218 7/26/2024
2.3.3-preview.3 145 7/25/2024
2.3.3-preview.2 103 7/24/2024
2.3.3-preview.1 325 7/18/2024
2.3.2 86,439 7/10/2024
2.3.1 11,216 7/9/2024
2.3.1-preview.2 106 7/8/2024
2.3.1-preview.1 119 7/6/2024
2.3.0 56,689 7/3/2024
2.3.0-preview.1 177 6/24/2024
2.2.3 70,150 6/11/2024
2.2.2 32,849 5/23/2024
2.2.1 122,154 4/17/2024
2.2.0 25,496 4/4/2024
2.1.4 20,541 3/19/2024
2.1.3 5,463 3/12/2024
2.1.2 37,208 2/27/2024
2.1.1 6,391 2/20/2024
2.1.0 16,433 2/10/2024
2.1.0-preview.7 125 2/8/2024
2.1.0-preview.6 141 2/2/2024
2.1.0-preview.5 1,373 1/25/2024
2.1.0-preview.4 106 1/23/2024
2.1.0-preview.3 13,486 1/18/2024
2.1.0-preview.2 391 1/12/2024
2.1.0-preview.1 108 1/11/2024
2.0.3 95,079 1/5/2024
2.0.3-preview.1 656 12/22/2023
2.0.2 24,636 12/15/2023
2.0.2-preview.2 128 12/12/2023
2.0.2-preview.1 1,529 12/6/2023
2.0.1 17,472 11/29/2023
2.0.0 2,982 11/23/2023
2.0.0-rc.2 845 11/21/2023
2.0.0-rc.1 175 11/17/2023
2.0.0-beta.3 108 11/16/2023
2.0.0-beta.2 5,599 11/13/2023
2.0.0-beta.1 665 11/7/2023
2.0.0-beta.0 442 11/7/2023
2.0.0-alpha.7 493 10/27/2023
2.0.0-alpha.6 137 10/25/2023
2.0.0-alpha.5 121 10/20/2023
2.0.0-alpha.4 152 10/12/2023
2.0.0-alpha.3 161 9/13/2023
2.0.0-alpha.2 142 9/7/2023