Project Overview: Products Component
Let's get introduced to the AppModule code of our course project.
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-apilibrary.The
InMemoryDbServicefrom theangular-in-memory-web-apiis implemented by theDataServiceclass. The ...
Ask