Aspire.NATS.Net 9.0.0-preview.3.24210.17

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of Aspire.NATS.Net.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Aspire.NATS.Net --version 9.0.0-preview.3.24210.17
NuGet\Install-Package Aspire.NATS.Net -Version 9.0.0-preview.3.24210.17
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="Aspire.NATS.Net" Version="9.0.0-preview.3.24210.17" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspire.NATS.Net --version 9.0.0-preview.3.24210.17
#r "nuget: Aspire.NATS.Net, 9.0.0-preview.3.24210.17"
#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.
// Install Aspire.NATS.Net as a Cake Addin
#addin nuget:?package=Aspire.NATS.Net&version=9.0.0-preview.3.24210.17&prerelease

// Install Aspire.NATS.Net as a Cake Tool
#tool nuget:?package=Aspire.NATS.Net&version=9.0.0-preview.3.24210.17&prerelease

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": {
        "HealthChecks": false
      }
    }
  }
}

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.HealthChecks = false);

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

Feedback & contributing

https://github.com/dotnet/aspire

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
8.0.0-preview.6.24214.1 51 4/23/2024
8.0.0-preview.5.24201.12 68 4/9/2024