Aspire is a multi-language, code-first toolchain for building, running, and deploying distributed applications.
Describe how services, frontends, containers, databases, caches, and connections fit together in code. The Aspire CLI runs the whole app locally, exposes OpenTelemetry-based observability, and carries the same definition into deployment.
The same application definition can be written in different languages.
C# (apphost.cs)
var builder = DistributedApplication.CreateBuilder(args);
var cache = builder.AddRedis("cache");
var api = builder.AddNodeApp("api", "./api", "src/index.ts")
.WithReference(cache)
.WaitFor(cache)
.WithHttpEndpoint(env: "PORT")
.WithExternalHttpEndpoints();
builder.AddViteApp("frontend", "./frontend")
.WithReference(api)
.WaitFor(api);
builder.Build().Run();TypeScript (apphost.ts)
import { createBuilder } from './.modules/aspire.js';
const builder = await createBuilder();
const cache = await builder.addRedis("cache");
const api = await builder
.addNodeApp("api", "./api", "src/index.ts")
.withReference(cache)
.waitFor(cache)
.withHttpEndpoint({ env: "PORT" })
.withExternalHttpEndpoints();
await builder
.addViteApp("frontend", "./frontend")
.withReference(api)
.waitFor(api);
await builder.build().run();To install the latest released version of the Aspire CLI:
On Windows:
irm https://aspire.dev/install.ps1 | iexOn Linux or macOS:
curl -sSL https://aspire.dev/install.sh | bashNote
If you want to use the latest daily builds instead of the released version, follow the instructions in docs/using-latest-daily.md.
- Documentation
- Build your first app
- Build status
- Aspire samples repository
- Developer Control Plane (DCP)
- Dogfooding pull requests
This repo contains the Aspire CLI, AppHost SDK, dashboard, service discovery infrastructure, project templates, integrations, and VS Code Extension.
Follow docs/contributing.md for working in the repository.
Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center (MSRC) secure@microsoft.com. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Further information, including the MSRC PGP key, can be found in the Security TechCenter. You can also find these instructions in this repo's Security doc.
The Aspire team cannot evaluate the underlying third-party containers for which it provides API support for suitability for specific customer requirements.
You should evaluate whichever containers you chose to compose and automate with Aspire to ensure they meet your, your employers or your government’s requirements on security and safety as well as cryptographic regulations and any other regulatory or corporate standards that may apply to your use of the container.
The code in this repo is licensed under the MIT license.