December 2017
Intermediate to advanced
296 pages
5h 56m
English
If we open the cloned folder, we should see the following:
.├── README.md├── e2e│ ├── app.e2e-spec.ts│ ├── app.po.ts│ └── tsconfig.e2e.json├── karma.conf.js├── package.json├── protractor.conf.js├── src│ ├── app│ │ ├── add-device│ │ │ ├── add-device.component.css│ │ │ ├── add-device.component.html│ │ │ ├── add-device.component.spec.ts│ │ │ └── add-device.component.ts│ │ ├── app.component.css│ │ ├── app.component.html│ │ ├── app.component.spec.ts│ │ ├── app.component.ts│ │ ├── app.global.ts│ │ ├── app.module.ts│ │ ├── device│ │ │ ├── device.component.css│ │ │ ├── device.component.html│ │ │ ├── device.component.spec.ts│ │ │ └── device.component.ts│ │ ├── device-template│ │ │ ├── device-template.component.css│ │ │ ├── device-template.component.html ...