Skip to content

Latest commit

 

History

History
76 lines (50 loc) · 3.13 KB

blazor.md

File metadata and controls

76 lines (50 loc) · 3.13 KB

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

Date Name Resources
Jun 18, 2020 BlazorDay 2020 Video