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

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

DateNameResources

Jun 18, 2020

BlazorDay 2020

Last updated