Now that you know how to deal with states and models in the UI, let’s spend some time integrating with the backend for the real data.
In this chapter, we’ll start storing in and fetching the data from the Node.js server instead of the hard-coded array of issues in the browser’s memory. The objective is to get used to interacting with the server via REST APIs. We will be modifying both front-end and back-end code because we’ll be implementing as well as using REST APIs . As for persistence, let’s leave it to the next chapter. For the moment, we’ll save the data in an in-memory data structure ...