Tesserae 2026.3.65235

dotnet add package Tesserae --version 2026.3.65235
                    
NuGet\Install-Package Tesserae -Version 2026.3.65235
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Tesserae" Version="2026.3.65235" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Tesserae" Version="2026.3.65235" />
                    
Directory.Packages.props
<PackageReference Include="Tesserae" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Tesserae --version 2026.3.65235
                    
#r "nuget: Tesserae, 2026.3.65235"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Tesserae@2026.3.65235
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Tesserae&version=2026.3.65235
                    
Install as a Cake Addin
#tool nuget:?package=Tesserae&version=2026.3.65235
                    
Install as a Cake Tool

Build Status

<a href="https://curiosity.ai"><img src="http://curiosity.ai/media/cat.color.square.svg" width="100" height="100" align="right" /></a>

Tesserae

Tesserae is a UI toolkit for building web applications entirely in C#, inspired by Microsoft's Fluent UI toolkit. It leverages the h5 C# to JavaScript compiler to provide a strongly typed, easy-to-use UI development experience.

Official Documentation: https://docs.curiosity.ai/tesserae

Getting Started

To create a new, blank Tesserae project from scratch, follow these steps:

  1. Update or install the h5-compiler:

    dotnet tool update --global h5-compiler
    
  2. Install the h5 project templates:

    dotnet new install h5.Template
    
  3. Create a new h5 project:

    dotnet new h5
    
  4. Add the Tesserae package:

    dotnet add package Tesserae
    

Build Process

Tesserae projects are compiled from C# to JavaScript using the h5 compiler.

h5.json Configuration

The build process is controlled by the h5.json file located in your project root. This file defines:

  • Output Directory: Where the compiled files will be placed (e.g., "output": "$(OutDir)/h5/").
  • Entry Point: The name of the generated JavaScript file (e.g., "fileName": "app.js").
  • HTML Generation: Whether to generate an index.html file and its title.
  • Resources: Additional CSS, images, or JavaScript files to be included in the build output.

Compilation Output

When you build the project (e.g., via dotnet build or in Visual Studio), the h5 compiler translates your C# code into JavaScript and copies necessary assets to the output folder. By default, these files are located in: bin/Debug/netstandard2.0/h5/ (or bin/Release/... depending on your configuration).

Local Testing

To test your application locally, we recommend using the dotnet-serve tool, which is a simple command-line HTTP server.

  1. Install dotnet-serve:

    dotnet tool install dotnet-serve --global
    
  2. Serve the compiled files: Navigate to the h5 output directory and start the server:

    cd bin/Debug/netstandard2.0/h5/
    dotnet serve --port 5000
    
  3. View your app: Open your browser and navigate to http://localhost:5000/.

Documentation

Detailed guides and documentation can be found in the following sections:

Samples

The Tesserae.Tests project contains numerous examples demonstrating how to use the library components. A live version of these samples is hosted at https://curiosity.ai/tesserae.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on Tesserae:

Package Downloads
Mosaik.FrontEnd.Core

Package Description

Mosaik.FrontEnd

Package Description

Mosaik.UI.Core

Package Description

Mosaik.FrontEnd.Topics

Package Description

Mosaik.FrontEnd.Admin

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Tesserae:

Repository Stars
curiosity-ai/h5
🚀 The next generation C# to JavaScript compiler
Version Downloads Last Updated
2026.3.65235 68 3/12/2026
2026.3.65221 61 3/12/2026
2026.3.65198 63 3/12/2026
2026.3.65197 460 3/12/2026
2026.3.65189 104 3/11/2026
2026.3.65180 90 3/11/2026
2026.3.65128 132 3/10/2026
2026.3.65127 106 3/10/2026
2026.3.65006 4,269 3/5/2026
2026.3.64991 550 3/5/2026
2026.3.64990 153 3/5/2026
2026.3.64988 151 3/5/2026
2026.3.64910 220 3/3/2026
2026.3.64906 162 3/3/2026
2026.3.64900 164 3/3/2026
2026.3.64883 175 3/2/2026
2026.3.64861 982 3/2/2026
2026.2.64745 3,415 2/26/2026
2026.2.64600 3,349 2/22/2026
2026.2.64394 2,903 2/15/2026
Loading failed