Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mariusconjeaud/angular-with-api-calls

Angular with API calls template. Full Azure Pipeline with unit testing, e2e testing, code coverage and linting included.
https://github.com/mariusconjeaud/angular-with-api-calls

angular azure-app-service azure-devops cobertura expressjs junit karma protractor puppeteer typescript

Last synced: 19 days ago
JSON representation

Angular with API calls template. Full Azure Pipeline with unit testing, e2e testing, code coverage and linting included.

Awesome Lists containing this project

README

        

# Requirements
You need to have installed :
* Node.js version 12 LTS from [here](https://nodejs.org/en/download/).
* Angular CLI. To install it, execute the following command :
```bash
npm install -g @angular/cli
```

# Foreword
In order to work, this application queries an API. This API is built in the form of Azure Functions with a Node.js runtime.

To find how to deploy the API locally, head over to my [nodejs-az-functions-api Github repo](https://github.com/mariusconjeaud/nodejs-az-functions-api).

# Build the app
Once the API is up and running - you need to execute the front-end app.

# Run the app
To run the app, execute the following command - this will open a new tab on your default browser with url *localhost:4200*

```bash
ng serve -o
```