Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 531 Bytes

README.md

File metadata and controls

21 lines (11 loc) · 531 Bytes

Installing the Angular CLI

With the following command the angular-cli will be installed globally in your machine:

npm install -g @angular/cli

To Run the Development Backend Server

We can start the sample application backend with the following command:

npm run server

This is a small Node REST API server.

To run the Development UI Server

To run the frontend part of our code, we will use the Angular CLI:

npm start

The application is visible at port 4200: http://localhost:4200