Blazor
Use the power of .NET and C# to build full stack web apps without writing a line of JavaScript.
→ dotnet.microsoft.com/apps/aspnet/web-apps/blazor
Learn
Getting started
Fundamentals
Additional readings
Blazor Server in .NET Core 3.0 scenarios and performance - Oct 10, 2019
Samples
Command line
# create a new Blazor Server App project
dotnet new blazorserver -o <project-name>
# create a new Blazor WebAssembly App project
dotnet new blazorwasm -o <project-name>
# create a new Razor component
dotnet new razorcomponent -n <component-name> -o <folder>
# create a new Razor page
dotnet new page -n <page-name> -o <folder>
Tips
Local debug
Recipes
Authentication
Local storage
Events
Date
Name
Resources
Last updated
Was this helpful?