RealWorld Example App

Server-Side Blazor codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld spec and API.

This codebase was created to demonstrate a fully fledged fullstack application built with Server-Side Blazor including CRUD operations, authentication, routing, pagination, and more.

We've gone to great lengths to adhere to the Blazor community styleguides & best practices.

For more information on how to this works with other frontends/backends, head over to the RealWorld repo.

How it works

This app is constructed with a minimal amount of extra Nuget packages. Basic state is managed in the AppState class without resorting to something like a Blazor/Razor Components Redux clone. Use of local storage is through simple JavaScript functions in the interop.js file rather than a .NET wrapper/3rd-party package. ApiClient contains the basic functionality to consume the RealWorld backend API.

Getting started