Angular app

with json database

The simple Angular app that shows my fundamental knowledge of Angular. There are 3 scalable components:
- Home component:

- Laptops component:

- Laptop details component:

Program uses json database. Components buttons use LaptopService that is injected to components. LaptopService uses Http requests to interact with json-server. The data is editable.

Configure the app:
> install npm
> npm install -g @angular/cli //if you don't have angular - instal angular globally
> cd AngularProjectDY
> npm install

Run the json-server:
> json-server --watch db.json
If it does't work: >npm install json-server

Run the Angular program:
> ng serve

I've done "Tour of Heroes" and "Your first angular app" tutorials from Angular website to write this project.

You can download and see the code.