Download
Get the NuGet package and optional server-side tools to start building.
Blazor Power Tools
The main component library — 35+ production-ready components for forms, AI, image processing, and developer tools. One package, everything included.
dotnet add package BlazorPowerToolsPackage Manager Console
Install from Visual Studio's Package Manager Console:
Install-Package BlazorPowerToolsPackageReference
Add directly to your .csproj file:
<PackageReference Include="BlazorPowerTools" Version="*" />Server Monitor Service
Install the BPT Server Monitor agent on any machine in your network to stream real-time CPU, GPU, memory, network, and process metrics back to your Blazor dashboard via SignalR. Runs as a lightweight background service on Windows and Linux.
Install the Service
Download and run the MSI installer. The service registers as a Windows service and starts automatically on boot.
Configure the Hub Connection
Open the configuration file and set your Blazor host URL:
C:\Program Files\BptServerMonitor\appsettings.json{
"ServerMonitor": {
"HubUrl": "https://your-blazor-host/bpt-servermonitorhub",
"ServerId": "my-windows-server",
"IntervalMs": 2000
}
}Verify It's Running
The service starts automatically after installation. Check Windows Services
(services.msc) for BPT Server Monitor to confirm it's running.
DataFlow Service
Install the BPT DataFlow agent on any machine to execute data pipelines (email, files, FTP/SFTP, databases, REST APIs) and stream execution status back to your Blazor dashboard via SignalR. Runs as a lightweight background service on Windows and Linux.
Install the Service
Download and run the MSI installer. The service registers as a Windows service and starts automatically on boot.
Configure the Hub Connection
Open the configuration file and set your Blazor host URL:
C:\Program Files\BptDataFlow\appsettings.json{
"DataFlow": {
"HubUrl": "https://your-blazor-host/bpt-dataflowhub",
"FlowDirectory": "C:\\ProgramData\\BptDataFlow\\flows"
}
}Verify It's Running
The service starts automatically after installation. Check Windows Services
(services.msc) for BPT DataFlow to confirm it's running.