My Account Log in

1 option

Web Development with Blazor : A Practical Guide to Building Interactive UIs with C# 12 And . NET 8 / Jimmy Engström and Steve Sanderson.

O'Reilly Online Learning: Academic/Public Library Edition Available online

View online
Format:
Book
Author/Creator:
Engström, Jimmy, author.
Sanderson, Steve, author.
Series:
Expert insight.
Expert insight
Language:
English
Subjects (All):
Web applications.
Web site development.
Physical Description:
1 online resource (367 pages)
Edition:
Third edition.
Place of Publication:
Birmingham, England : Packt Publishing, [2024]
Biography/History:
Engstrom Jimmy: Jimmy Engstrom has been developing ever since he was 7 years old and got his first computer. He loves to be on the cutting edge of technology, trying new things. When he got wind of Blazor, he immediately realized its potential and adopted it when it was in beta. He has been running Blazor in production since it was launched by Microsoft. His passion for the. NET industry and community has taken him around the world, speaking about development. Microsoft has recognized this passion by awarding him the Microsoft Most Valuable Professional award 10 years in a row.
Summary:
Web Development with Blazor is your essential guide to building and deploying interactive web applications in C# – without relying on JavaScript. Written by an early Blazor adopter and updated for .NET 8, this book takes you through the end-to-end development of an example app, helping you to overcome common challenges along the way. You’ll pick up both Blazor Server and Blazor WebAssembly and discover cutting-edge tools to enrich your development experience. Responding to evolving needs, this edition introduces flexible hosting models, allowing you to mix and match hosting approaches to create flexible and scalable Blazor applications. It also presents the new Blazor templates, which provide ready-made solutions to simplify and expedite development. You'll learn about the game-changing server-side rendering (SSR), a hybrid hosting model blending the strengths of Blazor Server and Blazor WebAssembly, as well as streaming rendering, a new technique that boosts the performance and user experience of Blazor apps. By the end of this book, you'll have the confidence you need to create and deploy production-ready Blazor applications using best practices, along with a big-picture view of the Blazor landscape.
Contents:
Cover
Copyright
Foreword
Contributors
Table of Contents
Preface
Chapter 1: Hello Blazor
Technical requirements
Why Blazor?
Preceding Blazor
Introducing WebAssembly
Introducing .NET 8
Introducing Blazor
Blazor Server
Blazor WebAssembly
Blazor WebAssembly versus Blazor Server
Blazor Hybrid/.NET MAUI
Server-Side Rendering (SSR)
The feature formerly known as Blazor United
Summary
Further reading
Chapter 2: Creating Your First Blazor App
Setting up your development environment
Windows
macOS and Linux (or Windows)
Creating our first Blazor application
Exploring the templates
Blazor Web App
Blazor WebAssembly Standalone App
Creating a Blazor web application
Using the command line
Creating projects using the command line
Figuring out the project structure
Program.cs (BlazorWebApp project)
Program.cs (BlazorWebApp.Client)
App (BlazorWebApp)
Routes
MainLayout
CSS
Chapter 3: Managing State - Part 1
Creating a data project
Creating a new project
Creating data classes
Creating an interface
Implementing the interface
Adding the API to Blazor
Chapter 4: Understanding Basic Blazor Components
Exploring components
Counter
Weather
Learning Razor syntax
Razor code blocks
Implicit Razor expressions
Explicit Razor expressions
Expression encoding
Directives
Adding an attribute
Adding an interface
Inheriting
Generics
Changing the layout
Setting a namespace
Setting a route
Adding a using statement
Understanding dependency injection
Singleton
Scoped
Transient
Injecting the service
Changing the render mode
Figuring out where to put the code
In the Razor file.
In a partial class
Inheriting a class
Only code
Lifecycle events
OnInitialized and OnInitializedAsync
OnParametersSet and OnParametersSetAsync
OnAfterRender and OnAfterRenderAsync
ShouldRender
Parameters
Cascading parameters
Writing our first component
Creating a components library
Using our components library
Creating our own component
Chapter 5: Creating Advanced Blazor Components
Exploring binding
One-way binding
Two-way binding
Actions and EventCallback
Using RenderFragment
ChildContent
Default value
Building an alert component
Exploring the new built-in components
Setting the focus of the UI
Influencing the HTML head
Component virtualization
Error boundaries
Sections
Chapter 6: Building Forms with Validation
Exploring form elements
EditForm
InputBase&lt
&gt
InputCheckbox
InputDate&lt
TValue&gt
InputNumber&lt
InputSelect&lt
InputText
InputTextArea
InputRadio
InputRadioGroup
InputFile
Adding validation
ValidationMessage
ValidationSummary
Custom validation class attributes
Looking at bindings
Binding to HTML elements
Binding to components
Building an admin interface
Listing and editing categories
Listing and editing tags
Listing and editing blog posts
Adding an abstraction layer
Locking the navigation
Enhanced Form Navigation
Chapter 7: Creating an API
Creating the service
Learning about Minimal APIs
Adding the API controllers
Adding APIs for handling blog posts
Adding APIs for handling Categories
Adding APIs for handling Tags
Adding APIs for handling comments
Creating the client
Summary.
Chapter 8: Authentication and Authorization
Setting up authentication
Configuring our Blazor app
Securing our Blazor app
Securing Blazor WebAssembly
Adding roles
Configuring Auth0 by adding roles
Adding roles to Blazor
Chapter 9: Sharing Code and Resources
Adding static files
Choosing between frameworks
Adding a new style
Adding CSS
Making the admin interface more usable
Making the menu more useful
Making the blog look like a blog
CSS isolation
Chapter 10: JavaScript Interop
Why do we need JavaScript?
.NET to JavaScript
Global JavaScript (the old way)
JavaScript Isolation
JavaScript to .NET
Static .NET method call
Instance method call
Implementing an existing JavaScript library
JavaScript interop in WebAssembly
Chapter 11: Managing State - Part 2
Storing data on the server side
Storing data in the URL
Route constraints
Using a query string
Implementing browser storage
Implementing Blazor Server (InteractiveServer)
Implementing WebAssembly (InteractiveWebAssembly)
Implementing the shared code
Using an in-memory state container service
Implementing real-time updates on Blazor Server
Implementing real-time updates on Blazor WebAssembly
State management frameworks
Root-level cascading values
Chapter 12: Debugging the Code
Making things break
Debugging Blazor Server
Debugging Blazor WebAssembly
Debugging Blazor WebAssembly in the web browser
Hot Reload
Chapter 13: Testing
What is bUnit?
Setting up a test project
Mocking the API.
Writing tests
Authentication
Testing JavaScript
Blazm extension
Chapter 14: Deploying to Production
Continuous delivery options
Hosting options
Hosting Blazor Server/InteractiveServer
Hosting InteractiveWebAssembly
Hosting Blazor WebAssembly Standalone
Hosting on IIS
Chapter 15: Moving from, or Combining with, an Existing Site
Introducing web components
Exploring custom elements
Exploring the Blazor component
Adding Blazor to an Angular site
Adding Blazor to a React site
Adding Blazor to MVC/Razor Pages
Adding web components to a Blazor site
Migrating from Web Forms
Chapter 16: Going Deeper into WebAssembly
Exploring the WebAssembly template
.NET WebAssembly build tools
AOT compilation
WebAssembly Single Instruction, Multiple Data (SIMD)
Trimming
Lazy loading
Progressive web apps
Native dependencies
Common problems
Progress indicators
Prerendering on the server
Preloading and persisting the state
Chapter 17: Examining Source Generators
What a source generator is
How to get started with source generators
Community projects
InterfaceGenerator
Blazorators
C# source generators
Roslyn SDK samples
Microsoft Learn
Chapter 18: Visiting .NET MAUI
What is .NET MAUI?
.NET MAUI App
.NET MAUI Class Library
.NET MAUI Blazor Hybrid App
Looking at the template
Developing for Android
Running in an emulator
Running on a physical device
Developing for iOS
Hot restart
Simulator
Developing for macOS
Developing for Windows
Developing for Tizen
Chapter 19: Where to Go from Here.
Take-aways from running Blazor in production
Solving memory problems
Solving concurrency problems
Solving errors
Old browsers
The next steps
The community
The components
Packt Page
Other Books You May Enjoy
Index.
Notes:
Description based on publisher supplied metadata and other sources.
Description based on print version record.
ISBN:
9781835466698
1835466699
OCLC:
1432733722

The Penn Libraries is committed to describing library materials using current, accurate, and responsible language. If you discover outdated or inaccurate language, please fill out this feedback form to report it and suggest alternative language.

Find

Home Release notes

My Account

Shelf Request an item Bookmarks Fines and fees Settings

Guides

Using the Find catalog Using Articles+ Using your account