Now that we’ve organized the project and added development tools for productivity, let’s get back to adding more features to the Issue Tracker.
In this chapter, we’ll explore the concept of routing, or handling multiple pages that we may need to display. Even in a single-page application (SPA), there are in fact multiple logical pages (or views) within the application. It’s just that the page load happens only the first time from the server. After that, each of the other views is displayed by manipulating or changing the DOM rather than fetching the entire page from the server.