Introduction to Talking to the Server
Here's a quick introduction to server communication!
We'll cover the following...
Communicating with the server is an important part of client-side apps. The server is usually the source of data truth, and it has information the client needs. For example, server information may have changed, or we may need updated data to draw a new part of the client application. The server also often needs to be informed of actions taken on the client.
In this chapter, we’re going to look at two basic ways of communicating with the server: making ...