Quick.XtermBlazor
2.1.1-alpha1
dotnet add package Quick.XtermBlazor --version 2.1.1-alpha1
NuGet\Install-Package Quick.XtermBlazor -Version 2.1.1-alpha1
<PackageReference Include="Quick.XtermBlazor" Version="2.1.1-alpha1" />
paket add Quick.XtermBlazor --version 2.1.1-alpha1
#r "nuget: Quick.XtermBlazor, 2.1.1-alpha1"
// Install Quick.XtermBlazor as a Cake Addin #addin nuget:?package=Quick.XtermBlazor&version=2.1.1-alpha1&prerelease // Install Quick.XtermBlazor as a Cake Tool #tool nuget:?package=Quick.XtermBlazor&version=2.1.1-alpha1&prerelease
XtermBlazor
<img align="right" width="100" height="100" src="https://github.com/aaasoft/Quick.XtermBlazor/assets/29337428/244eb056-4bb1-43a2-85b4-1909034c3ddf">
Brings xterm.js to Blazor
Live Demo: https://xtermblazor.pages.dev
Demo Projects
- XtermBlazor.Demo.Server (Blazor Server)
- XtermBlazor.Demo.Wasm (Blazor WebAssembly)
Prerequisites
Before you get started with this project, make sure you have the following software installed on your system:
- .NET: You will need .NET 6.0 or later for this project.
- Node.js: This project also requires Node.js version 18 or later.
Installation
1. Install the package
Find the package through NuGet Package Manager or install it with following command.
dotnet add package Quick.XtermBlazor
2. Add Imports
After the package is added, you need to add the following in your _Imports.razor
@using XtermBlazor
3. Add CSS & Font references
Add the following to your HTML head section, it's either index.html
or _Host.cshtml
depending on whether you're running WebAssembly or Server.
<link href="_content/Quick.XtermBlazor/XtermBlazor.min.css" rel="stylesheet" />
In the HTML body section of either index.html
or _Host.cshtml
add this:
<script src="_content/Quick.XtermBlazor/XtermBlazor.min.js"></script>
Basic Usage
<Xterm @ref="_terminal" Options="_options" OnFirstRender="@OnFirstRender" />
@code {
private Xterm _terminal;
private TerminalOptions _options = new TerminalOptions
{
CursorBlink = true,
CursorStyle = CursorStyle.Bar,
Theme =
{
Background = "#17615e",
},
};
private async Task OnFirstRender()
{
await _terminal.WriteLine("Hello World");
}
}
Addons
Xterm supports Addons
To use @xterm/addon-fit
addon, you need to add the following to your HTML body section either index.html
or _Host.cshtml
.
Blazor WebAssembly index.html
<script src="https://cdn.jsdelivr.net/npm/@xterm/addon-fit@0.9.0/lib/addon-fit.min.js"></script>
<script src="_framework/blazor.webassembly.js"></script>
<script>navigator.serviceWorker.register('service-worker.js');</script>
<script src="_content/XtermBlazor/XtermBlazor.min.js"></script>
<script>XtermBlazor.registerAddons({"addon-fit": new FitAddon.FitAddon()});</script>
Blazor Server _Host.cshtml
<script src="https://cdn.jsdelivr.net/npm/@@xterm/addon-fit@0.9.0/lib/addon-fit.min.js"></script>
<script src="_framework/blazor.server.js"></script>
<script src="_content/XtermBlazor/XtermBlazor.min.js"></script>
<script>XtermBlazor.registerAddons({"addon-fit": new FitAddon.FitAddon()});</script>
Usage with addons
<Xterm @ref="_terminal" Options="_options" Addons="_addons" OnFirstRender="@OnFirstRender" />
@code {
private Xterm _terminal;
private TerminalOptions _options = new TerminalOptions
{
CursorBlink = true,
CursorStyle = CursorStyle.Bar,
};
private HashSet<string> _addons = new HashSet<string>()
{
"addon-fit",
};
private async Task OnFirstRender()
{
// Invoke fit() function
await _terminal.Addon("addon-fit").InvokeVoidAsync("fit");
await _terminal.WriteLine("Hello World");
}
}
Contributing
Contributions are welcome! Please feel free to submit pull requests or open issues.
License
XtermBlazor is licensed under the MIT License. See the LICENSE
file for more details.
Stargazers over time
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Macross.Json.Extensions (>= 3.0.0)
- Microsoft.AspNetCore.Components.Web (>= 6.0.26)
-
net7.0
- Macross.Json.Extensions (>= 3.0.0)
- Microsoft.AspNetCore.Components.Web (>= 7.0.15)
-
net8.0
- Macross.Json.Extensions (>= 3.0.0)
- Microsoft.AspNetCore.Components.Web (>= 8.0.1)
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 |
---|