Cirreum.Services.Client 1.0.27

Suggested Alternatives

Cirreum.Services.Wasm

dotnet add package Cirreum.Services.Client --version 1.0.27
                    
NuGet\Install-Package Cirreum.Services.Client -Version 1.0.27
                    
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="Cirreum.Services.Client" Version="1.0.27" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Cirreum.Services.Client" Version="1.0.27" />
                    
Directory.Packages.props
<PackageReference Include="Cirreum.Services.Client" />
                    
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 Cirreum.Services.Client --version 1.0.27
                    
#r "nuget: Cirreum.Services.Client, 1.0.27"
                    
#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 Cirreum.Services.Client@1.0.27
                    
#: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=Cirreum.Services.Client&version=1.0.27
                    
Install as a Cake Addin
#tool nuget:?package=Cirreum.Services.Client&version=1.0.27
                    
Install as a Cake Tool

Cirreum.Services.Client

NuGet Version NuGet Downloads GitHub Release License .NET

Foundational services infrastructure for WebAssembly client applications

Overview

Cirreum.Services.Client provides essential infrastructure services specifically designed for Blazor WebAssembly applications. It delivers state management, session handling, browser storage integration, and user activity monitoring with a focus on WebAssembly-specific requirements.

Key Features

  • State Management: Thread-safe application state with subscriber notifications and intelligent caching
  • Session Management: Sophisticated lifecycle management with configurable timeout stages and activity monitoring
  • Browser Integration: Local and session storage abstractions with WebAssembly file system support
  • User Presence: Activity detection through DOM events and HTTP calls with configurable throttling
  • Security: Content Security Policy builder and role-based authorization support

Core Services

// Register all core services
services.AddCoreServices(storage => {
    // Optional storage configuration
});

// State management
var stateManager = serviceProvider.GetRequiredService<IStateManager>();
var userState = stateManager.Get<IUserState>();

// Session management with configurable stages
var sessionManager = serviceProvider.GetRequiredService<ISessionManager>();
sessionManager.SessionStageChanged += (stage) => {
    // React to SafeZone/WatchZone transitions
};

// Browser storage
var localStorage = serviceProvider.GetRequiredService<ILocalStorageService>();
await localStorage.SetItemAsync("key", value);

Architecture

The library follows the Cirreum Foundation Framework pattern with layered simplicity:

  • State Layer: StateManager, StateContainer, specialized state types
  • Session Layer: SessionManager with stage-based timeout handling
  • Storage Layer: Browser storage abstractions and WebAssembly file system
  • Infrastructure Layer: Clock services, CSV utilities, CSP management

Session management uses a two-stage approach: SafeZone (0-90% of timeout) for minimal monitoring, and WatchZone (90-100%) for active monitoring with debounced session extension.

Contribution Guidelines

  1. Be conservative with new abstractions
    The API surface must remain stable and meaningful.

  2. Limit dependency expansion
    Only add foundational, version-stable dependencies.

  3. Favor additive, non-breaking changes
    Breaking changes ripple through the entire ecosystem.

  4. Include thorough unit tests
    All primitives and patterns should be independently testable.

  5. Document architectural decisions
    Context and reasoning should be clear for future maintainers.

  6. Follow .NET conventions
    Use established patterns from Microsoft.Extensions.* libraries.

Versioning

Cirreum.Services.Client follows Semantic Versioning:

  • Major - Breaking API changes
  • Minor - New features, backward compatible
  • Patch - Bug fixes, backward compatible

Given its foundational role, major version bumps are rare and carefully considered.

License

This project is licensed under the MIT License - see the LICENSE file for details.


Cirreum Foundation Framework
Layered simplicity for modern .NET

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Cirreum.Services.Client:

Package Downloads
Cirreum.Runtime.Client

The Cirreum Runtime Client.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.27 166 1/21/2026 1.0.27 is deprecated because it is no longer maintained.
1.0.26 140 1/12/2026 1.0.26 is deprecated because it is no longer maintained.
1.0.25 190 1/11/2026 1.0.25 is deprecated because it is no longer maintained.
1.0.24 137 1/5/2026 1.0.24 is deprecated because it is no longer maintained.
1.0.23 141 1/5/2026 1.0.23 is deprecated because it is no longer maintained.
1.0.22 148 1/2/2026 1.0.22 is deprecated because it is no longer maintained.
1.0.21 144 1/1/2026 1.0.21 is deprecated because it is no longer maintained.
1.0.20 141 12/30/2025 1.0.20 is deprecated because it is no longer maintained.
1.0.19 135 12/29/2025 1.0.19 is deprecated because it is no longer maintained.
1.0.18 139 12/29/2025 1.0.18 is deprecated because it is no longer maintained.
1.0.17 120 12/29/2025 1.0.17 is deprecated because it is no longer maintained.
1.0.16 124 12/29/2025 1.0.16 is deprecated because it is no longer maintained.
1.0.15 258 12/22/2025 1.0.15 is deprecated because it is no longer maintained.
1.0.14 158 12/20/2025 1.0.14 is deprecated because it is no longer maintained.
1.0.12 373 12/16/2025 1.0.12 is deprecated because it is no longer maintained.
1.0.11 230 12/5/2025 1.0.11 is deprecated because it is no longer maintained.
1.0.10 476 12/1/2025 1.0.10 is deprecated because it is no longer maintained.
1.0.9 464 11/30/2025 1.0.9 is deprecated because it is no longer maintained.
1.0.8 220 11/28/2025 1.0.8 is deprecated because it is no longer maintained.
1.0.7 253 11/24/2025 1.0.7 is deprecated because it is no longer maintained.
Loading failed