Before you begin: join our book community on Discord
Give your feedback straight to the authors themselves and chat to other early readers on our Discord server (find the "software-architecture-csharp-12-dotnet-8" channel under EARLY ACCESS SUBSCRIPTION).
https://packt.link/EarlyAccess
In this chapter, you will learn how to implement presentation layers based on client technologies. While applications based on server technologies run completely on the server and leaves to the browser just the task of rendering the HTM created by the server, applications based on client technologies run almost completely on the client machine and exchange data with the server by calling Web API. In turn, application based on client technologies can be classified as single page applications, which benefit of Web standards, or as native applications, which are tied to specific operating systems and take advantages of specific device peculiarities.Single page applications are based on JavaScript...