Project Overview: Products Component
Let's get introduced to the AppModule code of our course project.
We'll cover the following...
We'll cover the following...
Introduction
In this lesson, we’ll briefly explain the functionality of AppModule
. Let’s go through the important files one at a time.
-
Data service: Since this course is about NgRx, won’t code a real server using Node.js or PHP to keep things simple. To simulate a backend, we’ll utilize the
angular-in-memory-web-api
library.The
InMemoryDbService
from theangular-in-memory-web-api
is implemented by theDataService
class. The ...