Angular & Cumulocity IoT Platform

The following topics are covered here: Installation of the Cumulocity IoT Platform (C8Y) CLI Project creation via the C8Y CLI Creation of components Setting up navigation (routing) Custom branding & using Bootstrap 4 instead of 3 (default) First of all, we need the Cumulocity (C8Y) Angular CLI (Command Line Interface). We can install the CLI as follows: npm install -g @c8y/cli Using the C8Y CLI, a new project can be created as follows: c8ycli new myApp ...

April 27, 2019 ยท Aaron

Angular Tutorial

This tutorial shows how the following guestbook application can be implemented: The following applications are required: Node.js npm Angular CLI Bootstrap Installing Angular CLI npm install -g @angular/cli Generate new project (guestbook) ng new guestbook Install the Bootstrap library via the npm package manager: npm install โ€“save bootstrap Start developer server to test the application: ng serve The application is then available at the following address: http://localhost:4200/ ...

April 13, 2019 ยท Aaron