Termina.Generators
0.1.0
See the version list below for details.
dotnet add package Termina.Generators --version 0.1.0
NuGet\Install-Package Termina.Generators -Version 0.1.0
<PackageReference Include="Termina.Generators" Version="0.1.0"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
<PackageVersion Include="Termina.Generators" Version="0.1.0" />
<PackageReference Include="Termina.Generators"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add Termina.Generators --version 0.1.0
#r "nuget: Termina.Generators, 0.1.0"
#:package Termina.Generators@0.1.0
#addin nuget:?package=Termina.Generators&version=0.1.0
#tool nuget:?package=Termina.Generators&version=0.1.0
Termina
![]()
Termina is a reactive terminal UI (TUI) framework for .NET with declarative layouts and surgical region-based rendering. It provides an MVVM architecture with source-generated reactive properties, ASP.NET Core-style routing, and seamless integration with Microsoft.Extensions.Hosting.
Documentation
Features
- Reactive MVVM Architecture - ViewModels with
[Reactive]attribute for source-generated observable properties - Declarative Layouts - Tree-based layout system with size constraints (Fixed, Fill, Auto, Percent)
- Surgical Rendering - Only changed regions re-render, enabling smooth streaming updates
- ASP.NET Core-Style Routing - Route templates with parameters (
/tasks/{id:int}) and type constraints - Source Generators - AOT-compatible code generation for reactive properties and route parameters
- Streaming Support - Native
StreamingTextNodefor real-time content like LLM output - Dependency Injection - Full integration with
Microsoft.Extensions.DependencyInjection - Hosting Integration - Works with
Microsoft.Extensions.Hostingfor clean lifecycle management
Installation
dotnet add package Termina
dotnet add package Microsoft.Extensions.Hosting
Quick Start
1. Define a ViewModel
using System.Reactive.Linq;
using Termina.Input;
using Termina.Reactive;
public partial class CounterViewModel : ReactiveViewModel
{
[Reactive] private int _count;
[Reactive] private string _message = "Press Up/Down to change count";
public override void OnActivated()
{
Input.OfType<KeyPressed>()
.Subscribe(HandleKey)
.DisposeWith(Subscriptions);
}
private void HandleKey(KeyPressed key)
{
switch (key.KeyInfo.Key)
{
case ConsoleKey.UpArrow:
Count++;
Message = $"Count: {Count}";
break;
case ConsoleKey.DownArrow:
Count--;
Message = $"Count: {Count}";
break;
case ConsoleKey.Escape:
Shutdown();
break;
}
}
}
The [Reactive] attribute generates:
- A
BehaviorSubject<T>backing field - A public property
Countwith get/set - An
IObservable<T>propertyCountChangedfor subscriptions
2. Define a Page
using System.Reactive.Linq;
using Termina.Extensions;
using Termina.Layout;
using Termina.Reactive;
using Termina.Rendering;
using Termina.Terminal;
public class CounterPage : ReactivePage<CounterViewModel>
{
public override ILayoutNode BuildLayout()
{
return Layouts.Vertical()
.WithChild(
new PanelNode()
.WithTitle("Counter Demo")
.WithBorder(BorderStyle.Rounded)
.WithBorderColor(Color.Cyan)
.WithContent(
ViewModel.CountChanged
.Select(count => new TextNode($"Count: {count}")
.WithForeground(Color.BrightCyan))
.AsLayout())
.Height(5))
.WithChild(
ViewModel.MessageChanged
.Select(msg => new TextNode(msg))
.AsLayout()
.Height(1));
}
}
3. Configure and Run
using Microsoft.Extensions.Hosting;
using Termina.Hosting;
var builder = Host.CreateApplicationBuilder(args);
builder.Services.AddTermina("/counter", termina =>
{
termina.RegisterRoute<CounterPage, CounterViewModel>("/counter");
});
await builder.Build().RunAsync();
Layout System
Termina uses a declarative tree-based layout system:
Layouts.Vertical()
.WithChild(header.Height(3)) // Fixed height
.WithChild(content.Fill()) // Take remaining space
.WithChild(sidebar.Width(20)) // Fixed width
.WithChild(footer.Height(1)); // Fixed height
Layouts.Horizontal()
.WithChild(menu.Width(30))
.WithChild(main.Fill(2)) // 2x weight
.WithChild(aside.Fill(1)); // 1x weight
Routing
ASP.NET Core-style route templates with parameter support:
builder.Services.AddTermina("/", termina =>
{
termina.RegisterRoute<HomePage, HomeViewModel>("/");
termina.RegisterRoute<TasksPage, TasksViewModel>("/tasks");
termina.RegisterRoute<TaskDetailPage, TaskDetailViewModel>("/tasks/{id:int}");
termina.RegisterRoute<UserPage, UserViewModel>("/users/{name}");
});
Route Parameter Injection
public partial class TaskDetailViewModel : ReactiveViewModel
{
[FromRoute] private int _id; // Injected from route
public override void OnActivated()
{
LoadTask(Id); // Id is already populated
}
}
Navigation
Navigate("/tasks/42");
NavigateWithParams("/tasks/{id}", new { id = 42 });
Shutdown(); // Exit the application
Streaming Content
For real-time content like LLM output:
public StreamingTextNode Output { get; } = StreamingTextNode.Create();
private async Task StreamResponse()
{
await foreach (var chunk in GetStreamingData())
{
Output.Append(chunk); // Character-level updates
}
}
Testing
VirtualInputSource enables automated testing:
var scriptedInput = new VirtualInputSource();
builder.Services.AddTerminaVirtualInput(scriptedInput);
scriptedInput.EnqueueKey(ConsoleKey.UpArrow);
scriptedInput.EnqueueString("Hello World");
scriptedInput.EnqueueKey(ConsoleKey.Enter);
scriptedInput.Complete();
await host.RunAsync();
Requirements
- .NET 10.0 or later
- AOT-compatible (Native AOT publishing supported)
License
Apache 2.0 - See LICENSE for details.
Contributing
Contributions are welcome! See CONTRIBUTING.md for development setup and guidelines.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Termina.Generators:
| Package | Downloads |
|---|---|
|
Termina
Reactive terminal UI (TUI) framework for .NET with custom ANSI rendering, MVVM architecture, source-generated reactive properties, and ASP.NET Core-style routing. |
GitHub repositories
This package is not used by any popular GitHub repositories.
First stable release of Termina - a reactive terminal UI (TUI) framework for .NET.
**Major Changes**:
This release represents a complete architectural redesign from the beta, removing the Spectre.Console dependency and introducing a custom ANSI terminal rendering system with a declarative layout API.
**Breaking Changes**:
- **Complete removal of Spectre.Console dependency** ([#33](https://github.com/Aaronontheweb/Termina/pull/33))
- Replaced with custom ANSI terminal rendering system for direct terminal control
- New tree-based declarative layout API replaces component-based approach
- Surgical region-based updates for better performance
- New layout components: `TextNode`, `PanelNode`, `TextInputNode`, `ScrollableContainerNode`, `StreamingTextNode`, `SpinnerNode`
- New layout containers: `Layouts.Vertical()` and `Layouts.Horizontal()` with fluent API
- Size constraint system: `Fixed`, `Fill`, `Auto`, `Percent`
- Pages now use `BuildLayout()` returning `ILayoutNode` instead of render-based approach
- **Migration required**: All beta applications will need to be rewritten using the new declarative layout API
**New Features**:
- **Live documentation website** ([#40](https://github.com/Aaronontheweb/Termina/pull/40))
- Comprehensive VitePress documentation now available at https://aaronstannard.com/Termina/
- Includes getting started guides, tutorials, component reference, and advanced topics
- Code examples synced with actual source files
- Automated deployment on releases
- **Word wrapping support** ([#38](https://github.com/Aaronontheweb/Termina/pull/38))
- `TextNode` automatically wraps text to multiple lines when exceeding available width
- Configurable via `WordWrap` property and `NoWrap()` fluent method
- **Automatic terminal resize detection** ([#37](https://github.com/Aaronontheweb/Termina/pull/37))
- UI automatically adjusts when terminal window is resized
- Cross-platform polling approach works on all platforms
- **Streaming text components** ([#24](https://github.com/Aaronontheweb/Termina/pull/24))
- Two-tier buffer architecture with Persisted and Windowed modes
- `StreamingTextNode` for chat interfaces, logs, and LLM output
- Word wrapping support for streaming content
- Includes streaming chat demo with Akka.NET
**Bug Fixes**:
- Fix `TextInputNode` timer disposal race condition preventing crashes during shutdown ([#34](https://github.com/Aaronontheweb/Termina/pull/34))
- Fix `PreserveState` subscription leak by auto-disposing subscriptions in `ReactiveViewModel` ([#35](https://github.com/Aaronontheweb/Termina/pull/35))
- Fix reactive layout disposal bug ([#39](https://github.com/Aaronontheweb/Termina/pull/39))
**Improvements**:
- XML documentation now generated for all public APIs
- Enhanced demos moved to dedicated `demos/` folder
- Better AOT/trimming support with analyzer packaging improvements
---