// the find
AlexanderZhelnin/blazor-webassembly
Отвратительная работа Blazor-webassebly
A Blazor WebAssembly experiment that renders 2D graphics (polygons, polylines, text) on an HTML canvas using Blazor.Extensions.Canvas. The repo description translates roughly to 'terrible Blazor WebAssembly performance' — the author's own verdict. Two stars, last touched in March 2022.
- Uses Blazor.Extensions.Canvas for 2D drawing, which is a legitimate approach for canvas interop in WASM without writing JS
- The model layer (Polygon, Polyline, Text, Scale, Legend) shows some attempt at separating drawing primitives from rendering logic
- The author explicitly called it 'terrible' in the repo description — this is a performance experiment that failed, not a usable library
- Committed bin/Debug output (all those DLLs) directly into the repo, which is a basic hygiene failure that suggests this was never intended for external use
- Targets .NET 6, which is end-of-life; the Blazor.Extensions.Canvas package it relies on has also been largely abandoned
- No README, no docs, no usage examples — there is nothing here for someone to learn from or build on