Category: .NET Development

Dependency Injection in Blazor: Inject All the Things

Dependency Injection in Blazor Components Explained

Still spinning up HttpClient manually in your Blazor components like it’s 2005? It’s time to modernize your approach with Dependency Injection (DI) — a core feature in Blazor that can streamline your code and supercharge testability. Blazor, both Server and WebAssembly, embraces DI out of the box. Services are registered in Program.cs using scoped, singleton, […]

How to Implement Speech-to-Text in Blazor

Speech-to-Text in Blazor: Real-Time Voice Input

Are you tired of typing when you could be talking? What if I told you that with just a few lines of code, your Blazor app could understand your voice and convert it to text in real time? Whether you’re building a productivity tool, a chat interface, or a hands-free note-taking app, speech-to-text can revolutionize […]