Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/mariusconjeaud/angular-with-api-calls
- Owner: mariusconjeaud
- Created: 2020-03-27T10:55:55.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T16:26:02.000Z (almost 2 years ago)
- Last Synced: 2024-10-27T15:36:26.297Z (2 months ago)
- Topics: angular, azure-app-service, azure-devops, cobertura, expressjs, junit, karma, protractor, puppeteer, typescript
- Language: TypeScript
- Homepage:
- Size: 3.75 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
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
```