Skip to content

Latest commit

 

History

History

README.md

Aspire.Hosting.NATS library

Provides extension methods and resource definitions for a .NET Aspire AppHost to configure a NATS resource.

Getting started

Install the package

In your AppHost project, install the .NET Aspire NATS Hosting library with NuGet:

dotnet add package Aspire.Hosting.Nats

Usage example

Then, in the Program.cs file of AppHost, add a NATS resource and consume the connection using the following methods:

var nats = builder.AddNats("nats");

var myService = builder.AddProject<Projects.MyService>()
                       .WithReference(nats);

Additional documentation

https://learn.microsoft.com/dotnet/aspire/messaging/nats-component

Feedback & contributing

https://github.com/dotnet/aspire