Technical requirements
This chapter assumes that you have a basic understanding of HTTP Client.
We'll be using a mocked REST API using JSON Server, which allows you to spin up a REST API server with a fully working API. We'll not be learning how to use JSON Server, but if you are interested in learning more, you can find more information at https://github.com/typicode/json-server.
You can access the project source code for this chapter from the GitHub repository at https://github.com/PacktPublishing/Reactive-Patterns-with-RxJS-for-Angular/tree/main/Chapter04.
The project is composed of two folders:
recipes-book-api
: This contains the mocked server.recipes-book-front
: This contains the frontend application that was built with Angular 12 and RxJS7 to help us build beautiful UI components quickly. Please refer to the previous chapter's Technical requirements.
The project complies with the standard Angular style guide, which can be found...