...

/

Setting Up a Backend

Setting Up a Backend

Learn how to implement a fake server using the Fake Store API and build a CRUD Angular application.

We'll cover the following...

A web CRUD application usually connects to a server and uses an HTTP backend API to perform operations on data. It fetches existing data, updates it, creates new data, or deletes it. In a real-world scenario, we will most likely interact with a real backend API service through HTTP. There are cases, though, where we do not have access to a real backend API:

  • We may work remotely, and the server is only accessible through a VPN connection to which ...