Wisp.Framework.Templates 10.0.3

dotnet new install Wisp.Framework.Templates::10.0.3
                    
This package contains a .NET Template Package you can call from the shell/command line.

Wisp Framework

NuGet Version GitHub Release Static Badge GitHub Issues or Pull Requests GitHub Issues or Pull Requests

GitHub/Codeberg Update: After much deliberation, it has been decided to migrate development of Wisp back to GitHub for the time being. This is not to say that Codeberg isn't great. It is. It's just that for a small project like Wisp, the mainstream-ness of GitHub is a benefit. The CodeBerg Repo continues to exist and will act as a mirror for GitHub now. Please use GitHub for submitting Issues and Pull Requests.

Wisp is an open-source, cross-platform, embeddable web framework for building small, lightweight applications. It does not depend on any part of the ASP.NET Core SDK, runs on any platform supported by .NET Core and works with any .NET language. It's specifically designed for embedding in existing applications so it's fully self-contained and has no special environment requirements.

Learn more about Wisp

Warning! Wisp is in very early stages of development and production use is not recommended. Every release, even minor, might introduce significant breaking changes.

Get Started

Follow the Getting Started guide.

All you need to start developing with Wisp is the .NET Core SDK 10+ and a text editor.

Minimal Example

dotnet new console
dotnet add pacakge Wisp.Framework.Core

Program.cs:

var hostBuilder = new WispHostBuilder();
var appBuilder = hostBuilder.Build();

appBuilder.ConfigureRoutes(r => {
  r.Get("/", ctx => {
    ctx.Response.Body.Write("Hello World"u8);
  });
});

var app = appBuilder.Build();
await app.RunAsync();

License

This project is dual-licensed under either:

at your option.

  • net10.0

    • No dependencies.

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
10.0.3 97 3/3/2026