Aspire.NATS.Net
8.0.1
Prefix Reserved
See the version list below for details.
dotnet add package Aspire.NATS.Net --version 8.0.1
NuGet\Install-Package Aspire.NATS.Net -Version 8.0.1
<PackageReference Include="Aspire.NATS.Net" Version="8.0.1" />
paket add Aspire.NATS.Net --version 8.0.1
#r "nuget: Aspire.NATS.Net, 8.0.1"
// Install Aspire.NATS.Net as a Cake Addin #addin nuget:?package=Aspire.NATS.Net&version=8.0.1 // Install Aspire.NATS.Net as a Cake Tool #tool nuget:?package=Aspire.NATS.Net&version=8.0.1
Aspire.NATS.Net library
Registers INatsConnection in the DI container for connecting NATS server. Enables corresponding health check and logging.
Getting started
Prerequisites
- NATS server and the server URL for accessing the server.
Install the package
Install the .NET Aspire NATS library with NuGet:
dotnet add package Aspire.NATS.Net
Usage example
In the Program.cs file of your project, call the AddNatsClient
extension method to register a INatsConnection
for use via the dependency injection container. The method takes a connection name parameter.
builder.AddNatsClient("nats");
You can then retrieve a INatsConnection
instance using dependency injection. For example, to retrieve a connection from a Web API controller:
private readonly INatsConnection _connection;
public ProductsController(INatsConnection connection)
{
_connection = connection;
}
Configuration
The .NET Aspire NATS component provides multiple options to configure the NATS connection based on the requirements and conventions of your project.
Use a connection string
When using a connection string from the ConnectionStrings
configuration section, you can provide the name of the connection string when calling builder.AddNatsClient()
:
builder.AddNatsClient("myConnection");
And then the connection string will be retrieved from the ConnectionStrings
configuration section:
{
"ConnectionStrings": {
"myConnection": "nats://nats:4222"
}
}
See the ConnectionString documentation for more information on how to format this connection string.
Use configuration providers
The .NET Aspire NATS component supports Microsoft.Extensions.Configuration. It loads the NatsClientSettings
from configuration by using the Aspire:Nats:Client
key. Example appsettings.json
that configures some of the options:
{
"Aspire": {
"Nats": {
"Client": {
"DisableHealthChecks": true
}
}
}
}
Use inline delegates
Also you can pass the Action<NatsClientSettings> configureSettings
delegate to set up some or all the options inline, for example to disable health checks from code:
builder.AddNatsClient("nats", settings => settings.DisableHealthChecks = true);
AppHost extensions
In your AppHost project, install the Aspire.Hosting.Nats
library with NuGet:
dotnet add package Aspire.Hosting.Nats
Then, in the Program.cs file of AppHost
, register a NATS server and consume the connection using the following methods:
var nats = builder.AddNats("nats");
var myService = builder.AddProject<Projects.MyService>()
.WithReference(nats);
The WithReference
method configures a connection in the MyService
project named nats
. In the Program.cs file of MyService
, the NATS connection can be consumed using:
builder.AddNatsClient("nats");
Additional documentation
- https://nats-io.github.io/nats.net.v2/documentation/intro.html
- https://github.com/dotnet/aspire/tree/main/src/Components/README.md
Feedback & contributing
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- Microsoft.Extensions.Configuration.Binder (>= 8.0.1)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 8.0.4)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
- NATS.Net (>= 2.2.1)
- OpenTelemetry.Extensions.Hosting (>= 1.8.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
9.0.0-rc.1.24511.1 | 88 | 10/15/2024 |
8.2.2 | 123 | 10/24/2024 |
8.2.1 | 305 | 9/26/2024 |
8.2.0 | 269 | 8/29/2024 |
8.1.0 | 191 | 7/23/2024 |
8.0.2 | 191 | 6/28/2024 |
8.0.1 | 316 | 5/21/2024 |
8.0.0 | 114 | 5/21/2024 |
8.0.0-preview.7.24251.11 | 104 | 5/7/2024 |
8.0.0-preview.6.24214.1 | 171 | 4/23/2024 |
8.0.0-preview.5.24201.12 | 88 | 4/9/2024 |